Tagged: , ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #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.

    #472084

    Hey Roy!

    Is that heppening also, if your post is clear with zero markup?

    Best regards,
    Basilis

    #472092

    It happens on every long post. Even if I just hit Enter.
    Try setting an RTL website and see for yourself.

    #472463

    Hey!

    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,
    Yigit

    #472566

    Yes.
    Site is running version 3.2.3.
    The bug still exists on long posts, on RTL websites.

    #473141

    Hey!

    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!
    Andy

    #473233

    Hi 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

    #474855

    Hi,

    Can you please check if the issue persists with the default WordPress theme activated?

    Regards,
    Josue

    #474965

    Yes.
    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.

    #475314

    Hi!

    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,
    Josue

    #475318

    Thanks, 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' );
    #475321

    Yeah that’s better, glad to help :)

    Regards,
    Josue

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.