-
AuthorPosts
-
July 12, 2015 at 8:41 pm #472076
Hi there
On every RTL installation,
scrolling down using the regular editor,
breaks the editor.Single post, RTL, no scroll:
Single post, RTL, scroll down:
I can supply login details, but please test it locally on every RTL insulation.
It happens on every RTL website I did with long posts.July 12, 2015 at 9:31 pm #472084Hey Roy!
Is that heppening also, if your post is clear with zero markup?
Best regards,
BasilisJuly 12, 2015 at 9:37 pm #472092It happens on every long post. Even if I just hit Enter.
Try setting an RTL website and see for yourself.July 13, 2015 at 2:46 pm #472463Hey!
Which version of Enfold are you using? Please make sure that you are using the latest version 3.2.3 – http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
YigitJuly 13, 2015 at 5:08 pm #472566Yes.
Site is running version 3.2.3.
The bug still exists on long posts, on RTL websites.July 14, 2015 at 1:37 pm #473141Hey!
please try to deactivate all plugin, to see if one is causing this issue. If that does not help post admin access here as private reply so we can have a deeper look into it. Are we allowed to temporarily deactivate your plugins?
Cheers!
AndyJuly 14, 2015 at 3:24 pm #473233Hi there
Yes, I’ve deactivated all the plugins, and the bug still persists.My bet is the way you inject the shortcodes button into the bar.
I’ve attached login details.
Thank you
July 17, 2015 at 12:22 pm #474855Hi,
Can you please check if the issue persists with the default WordPress theme activated?
Regards,
JosueJuly 17, 2015 at 2:51 pm #474965Yes.
The issues persists only on the Enfold theme, and without any plugin activated.
The issue is gone when switching back to Twenty Fifteen theme with all the plugins activated.July 19, 2015 at 12:11 am #475314Hi!
It was caused by a line in Enfold ALB CSS code, i’ve added a workaround for that in your child theme functions.php:
add_action('admin_head', function() { if(is_rtl()){ ?> <style>div.mce-toolbar-grp{min-width: initial;}</style> <?php } });
Regards,
JosueJuly 19, 2015 at 1:12 am #475318Thanks, it seems to work with this code:
.wp-editor-expand div.mce-toolbar-grp { min-width: initial; }
And I load it using an external CSS:
function royeyal_admin_style() { wp_register_style( 'admin-rtl', get_stylesheet_directory_uri().'/css/admin-rtl.css', false, '20150719' ); wp_enqueue_style( 'admin-rtl' ); } add_action( 'admin_enqueue_scripts', 'royeyal_admin_style' );
July 19, 2015 at 1:53 am #475321Yeah that’s better, glad to help :)
Regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.