Viewing 8 replies - 1 through 8 (of 8 total)
  • Deborah Delin

    (@deborahdelingmailcom)

    Tberin – did you realise (as I did not at first) that although the button is no longer visible, it is in fact still there and still functions? If you hover over where it should be, to the right of the LTR button, a pop up appears which says DIRECTION RIGHT TO LEFT. You can use the button just as you did before. Happiness restored!! ??

    Thread Starter tberin

    (@tberin)

    Hi Deborah,

    I know it works its just that I have other people who use the website and it seems weird as its used in an open environment.
    Any chance to replace the missing icon with a working one?

    Deborah Delin

    (@deborahdelingmailcom)

    Ha ha! Sorry, I’m not the developer! Just a user and it took me 24 hours before I realised the button still worked! I would also like the button to come back……

    Also missing the RTL button icon. As tberin and Deborah point out, the button is actually there. Any ideas or advice on how to bring the icon back?

    I have the same problem. Currently I’m using this hack:

    // wordpress 3.8 rtl icon hack
    add_action( 'admin_head', function() {
    ?>
    <style>
    span.mce_rtl:before {
      content: '\f320';
    }
    span.mce_rtl {
      -moz-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      -webkit-transform: scaleX(-1);
      transform: scaleX(-1);
      filter: FlipH;
      -ms-filter: "FlipH";
    }
    </style>
    <?php
    });

    The flipping CSS code is from here: https://css-tricks.com/snippets/css/flip-an-image/

    Thread Starter tberin

    (@tberin)

    Thanks fad.lee!
    Where did you put the code to make it work?

    Has anyone tried contacting the developer for this?

    Thanks fad.lee

    It works like a charm

    tberin

    inside wp-rtl/wp-rtl.php

    ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘WP 3.8, no RTL right button’ is closed to new replies.