[Plugin: Slick Sitemap] RTL issues in TinyMCE fix
-
Hi
I’m running an RTL (right-to-left) WordPress site and activating this plugin caused the TinyMCE admin interface to switch back to LTR – creating all kinds of havoc.
So after a lot of digging around and experimentation I finally found a fix which I’d like to share.
The problem isn’t specific to this plugin; it’s a known issue with plugin .css files being registered too early. How to fix this:
1. open slick-sitemap.php (in wp-content/plugins/slick-sitemap)
2. replace the following codewp_register_style( 'slickmap.css', SLICKMAP_PLUGIN_URL . '/slickmap.css' ); wp_enqueue_style( 'slickmap.css' );
with this:
add_action( 'wp_print_styles', 'print_styles', 8 ); function print_styles() { wp_register_style( 'slickmap.css', SLICKMAP_PLUGIN_URL . '/slickmap.css' ); wp_enqueue_style( 'slickmap.css' ); }
I’d like to wholeheartedly thank the plugin maker and ask him to include this RTL fix in a future update.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Slick Sitemap] RTL issues in TinyMCE fix’ is closed to new replies.