Flexible Columns
InactiveReplace the regular single content editor with responsive multiple column editors.
Get ExtensionInstalls
20
Rating
3.0 / 5
Version
1.1.7
Tested to
WP 4.9.29
Install Trends
Chart renders here (client-side)
Description
This plugin will replace your default content editor with flexible multiple column editors, allowing you to add up to 4 columns of content to your page. Column widths can be easily altered and are responsive to mobile, tablet and desktop device sizes. This plugin requires the PRO version of Advanced Custom Fields to work as it makes use of Flexible Content fields.
Installation
- Upload plugin to your wp-content/plugins/ directory, or install via the Plugins section within your WordPress installation.
- Ensure that Advanced Custom Fields PRO is installed and activated in your plugins
- Activate the ACF Flexible Columns plugin
- On the Plugins page under the ACF Flexible Columns plugin, right-click on the JSON Import File link and Save the file to your computer.
- Navigate to the Custom Fields > Tools page and under Import Field Groups, click Browse and select the acf-flexible-columns.json file you downloaded, then click Import
- Flexible Columns are now fully installed and are available in your Page and Post editors, any existing content is retained in a new single column.
- You can easily migrate your existing content into the new editor system within the options panel within Custom Fields > Flexible Columns.
- Additional options are available in the Custom Fields > Flexible Columns admin panel
FAQ
Installation Instructions
- Upload plugin to your wp-content/plugins/ directory, or install via the Plugins section within your WordPress installation.
- Ensure that Advanced Custom Fields PRO is installed and activated in your plugins
- Activate the ACF Flexible Columns plugin
- On the Plugins page under the ACF Flexible Columns plugin, right-click on the JSON Import File link and Save the file to your computer.
- Navigate to the Custom Fields > Tools page and under Import Field Groups, click Browse and select the acf-flexible-columns.json file you downloaded, then click Import
- Flexible Columns are now fully installed and are available in your Page and Post editors, any existing content is retained in a new single column.
- You can easily migrate your existing content into the new editor system within the options panel within Custom Fields > Flexible Columns.
- Additional options are available in the Custom Fields > Flexible Columns admin panel
How to add your own custom Content Block
- First, add your new content block within the Advanced Custom Fields – Flexible Columns editor by adding a new layout within the row width(s) you want it available in.
- Next, create a new function in your functions.php like so:
function yourfunction($type){
if( $type == ‘layout_name’ ):
$field = get_sub_field(‘field_name’);
$layout = $field;
endif;
return $layout;
} - Then add the function to the filter so it will appear like so:
add_filter(‘flexible_layout’, ‘yourfunction’);