A
by Delwin Vriend
1 (0 reviews)
ACF WYSIWYG Styling
Provides the necessary CSS classes in ACF WYSYWIG editor to allow for complete styling of the admin interface.
Tested up to WP 4.3 (Current: 6.9)
v1.0
Current Version v1.0
Updated 10 years ago
Last Update on 27 Aug, 2015
Synced 14 hours ago
Last Synced on
Rank
#18,211
—
No change
Active Installs
80+
-1.2%
KW Avg Position
173
—
No change
Downloads
3K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 90
80+
90+
1,060
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 9 more installs to reach 90+
Rank Changes
Current
#18,211
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
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| wysiwyg | 173 | — | Tag | 16 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.0
- Last Updated
- Aug 27, 2015
- Requires WP
- 3.5.0+
- Tested Up To
- 4.3
- PHP Version
- N/A
- Author
- Delwin Vriend
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- 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,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns
200K+ installs
#272
A
Adminimize
200K+ installs
#274
The Plus Addons for Elementor - Addons for Elementor, Page Templates, Widgets, Mega Menu, WooCommerce
100K+ installs
#327
Frequently Asked Questions
Common questions about ACF WYSIWYG Styling
Not at all. For the time being ACF doesn't add these classes to the editor, but you can do it either by installing this plugin or by placing the following code in your functions.php file: function acf_plugin_wysiwyg_styling() { ?> <script> (function($) { acf.add_filter('wysiwyg_tinymce_settings', function(mceInit, id) { var mceInitElements = $('#' + mceInit.elements); var acfEditorField = mceInitElements.closest('.acf-field[data-type="wysiwyg"]'); var fieldKey = acfEditorField.data('key'); var fieldName = acfEditorField.data('name'); var flexContentName = mceInitElements.parents('[data-type="flexible_content"]').first().data('name'); var layoutName = mceInitElements.parents('[data-layout]').first().data('layout'); mceInit.body_class += " acf-field-key-" + fieldKey; mceInit.body_class += " acf-field-name-" + fieldName; if (flexContentName) { mceInit.body_class += " acf-flex-name-" + flexContentName; } if (layoutName) { mceInit.body_class += " acf-layout-" + layoutName; } return mceInit; }); })(jQuery); </script> <?php } add_action('acf/input/admin_footer', 'acf_plugin_wysiwyg_styling');
Not with this plugin. The prefixes are hard-coded to acf-field-key-, acf-field-name-, acf-flex-name- and acf-layout-. If you wish to change these prefixes, I would suggest not using this plugin and using the code shown above in your functions.php, changing the desired prefixes in the code.
I doubt it. Hopefully the developers of ACF provide this functionality in an upcoming version themselves, since it is quite simple and really should be part of the core function. At that time, this plugin will become redundant. I look forward to that date :-)
Again, this is a plugin to provide very basic functionality that allows for complete targetting of WYSIWYG editors within the ACF framework. I don't plan on adding any functionality to the plugin. But the code is released under GPLv2, so go at it yourself if you so desire!