Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

Advanced Custom Fields Page Builder

Descripción

PLEASE NOTE: The following plugins or add-ons are required for this to work:

The ACF Page Builder uses the Advanced Custom Fields Flexible Content field to create a bunch of completely customisable page elements. This plugin works best when used with Bootstrap, but it isn’t essential. These elements include:

  • Banner images
  • Buttons
  • Bootstrap Content Grids
  • Image Gallery (with text and caption)
  • Raw HTML and JavaScript
  • Simple Contact Forms
  • WYSIWYG Content

Each element can be configured – see the screenshots for configuration options. Default options are background colours, wrapper classes and if the element needs to be contained (Bootstrap only!) Please get in touch or submit pull requests for any more page sections.

El constructor de páginas ACF fue creado y es administrado por Big Lemon Creative.

Configuracion

To configure which post types or page templates the page builder is displayed on, use the following filter in your functions.php file:

function support_acfpb( $support = array() ) {

    $support['post_type'] = array(
        'page',
        'post'
    );

    $support['page_template'] = array(
        'page-templates/page-sectioned.php'
    );

    return $support;

}
add_filter('acfpb_set_locations', 'support_acfpb', 10, 1);

Usage

We designed the functions to match the ACF syntax of get_field() and the_field(). Use the functions below to get or directly echo the sections on the front end. The ID is optional.

the_sections( $id );

O

echo get_sections( $id );

Capturas

  • All sections collapsed
  • Banner section options
  • Button section options
  • Content Grid section options
  • Gallery section options
  • Raw HTML section options
  • Simple Contact Forms section options
  • WYSIWYG section options
  • Full Page of created sections

Instalación

Install the plugin by following these steps:

  1. Upload the acf-page-builder folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Check out the settings page to create some fields and see how to include it in your theme

The plugin can also be searched for and installed directly in the WordPress Plugin manager.

Make sure that you have Advanced Custom Fields installed.

Preguntas frecuentes

¿Puedo hacer una pregunta?

Sí. Dirígete a la página de GitHub con cualquier pregunta o petición. También puedes encontrar respuesta en la pestaña de soporte. Siéntete libre de contactarnos si no encuentras una respuesta, o encuéntranos en Twitter.

Reseñas

3 de septiembre de 2016 1 respuesta
Hey! It is nice to see someone getting this a go. I ve seen some prototypes on the net and would like to see this become a must to install add-on to ACF. I would look in to this https://bitbucket.org/dachcom/dachcom-page-designer/overview Good luck!
Leer todas las 2 reseñas

Colaboradores y desarrolladores

Este software es de código abierto. Las siguientes personas han contribuido a este plugin.

Colaboradores

Registro de cambios

v1.1.4

  • Remove ID as an option to call the sections – doesn’t work
  • The container is now disabled if Bootstrap is not selected
  • Tested up to 4.6.1

v1.1.3

  • Fixed the containment and bootstrap toggle – wasn’t working!

v1.1.2

  • Changed contributors and some house keeping

v1.1.1

  • The very first version! Includes the following sections: banners, buttons, content grid, galleries, raw HTML, normal WYSIWYG text and simple contact form integration