A
by delwinv
0 (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.34 (Current: 6.9.4)
v1.0
Current Version v1.0
Updated 10 years ago
Last Update on 27 Aug, 2015
Refreshed 6 hours ago
Last Refreshed on
Rank
#17,633
—
No change
Active Installs
80+
—
No change
KW Avg Position
179
—
No change
Downloads
3.1K
+1 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 90
80+
90+
1,118
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 5 more installs to reach 90+
Rank Changes
Current
#17,633
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
0.0
0 reviews
Overall
0%
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 | 179 | — | Tag | 1 day 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.34
- PHP Version
- N/A
- Author
- delwinv
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- 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,714
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns
200K+ installs
#267
A
Adminimize
200K+ installs
#278
The Plus Addons for Elementor – Addons for Elementor, Page Templates, Widgets, Mega Menu, WooCommerce
100K+ installs
#321
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!