offbeatwp/acf-layout

Layout builder based on ACF using Offbeat's components

Installs: 9 415

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 2

Open Issues: 2

Type:offbeatwp-service

2.0.0-beta.5 2019-11-29 11:24 UTC

README

OffbeatWP has a great builder based on Advanced Custom Fields that helps you to create themes with a minimal footprint. You have 100% control over the output of the builder since everything (even rows and component-containers) are based components.

Install by running this command from the root of your OffbeatWP Theme:

composer require offbeatwp/acf-layout

Next, add the following line to your config/services.php file:

OffbeatWP\AcfLayout\Service::class,

Installing the "Row" and "Component" Components

Run the following command from somewhere in your Wordpress installation.

wp acf-layout:install

Enable component for the pagebuilder

Add within the support array in the settings method pagebuilder like:

public static function settings()
{
    return [
        ...
        'supports'   => ['pagebuilder'],
        ...
    ];
}