A
by imageDESIGN
3 (1 reviews)
ACF Flexible Columns
Replace the regular single content editor with responsive multiple column editors.
Tested up to WP 4.9.29 (Current: 6.9.4)
v1.1.7
Current Version v1.1.7
Updated 7 years ago
Last Update on 19 Apr, 2018
Refreshed 6 hours ago
Last Refreshed on
Rank
#25,634
+774 this week
Active Installs
20+
—
No change
KW Avg Position
75
—
No change
Downloads
4.3K
+3 today
Support Resolved
0%
—
No change
Rating
60%
Review 3 out of 5
3
(1 reviews)
Next Milestone 30
20+
30+
2,220
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 2 more installs to reach 30+
Rank Changes
Current
#25,634
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
3.0
1 reviews
Overall
60%
5
0
(0%)
4
0
(0%)
3
1
(100%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| animate on scroll | 75 | — | Tag | 17 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.1.7
- Last Updated
- Apr 19, 2018
- Requires WP
- 4.5+
- Tested Up To
- 4.9.29
- PHP Version
- N/A
- Author
- imageDESIGN
Support & Rating
- Rating
- ★ ★ ★ ☆ ☆ 3
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,708
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#955
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about ACF Flexible Columns
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
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
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');
See Settings page for additional filter examples
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');
See Settings page for additional filter examples