offbeatwp / acf-layout
Layout builder based on ACF using Offbeat's components
Installs: 9 804
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 2
Open Issues: 2
Type:offbeatwp-service
Requires
- offbeatwp/acf-core: 1 - 2
- dev-master
- v2.x-dev
- 2.0.0.x-dev
- 2.0.0-beta.5
- 2.0.0-beta.4
- 2.0.0-beta.3
- 2.0.0-beta.2
- 2.0.0-beta
- 1.1.4
- 1.1.3
- 1.1.2.1
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- dev-fix/20241210-fix-components
- dev-feature/1.1.2.1
- dev-feature/1.1.2
- dev-feature/1.1.1
- dev-feature/fix-compat-issue
- dev-feature/templates-implement-settings
- dev-dseegers-patch-1
- dev-2.0.0-beta
- dev-2.0.0-dev
This package is auto-updated.
Last update: 2025-03-10 11:34:08 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'],
...
];
}