• Resolved Lee Hodson (VR51)

    (@leehodson)


    WPRM conflicts with some TinyMCE modals since WordPress 4.9.

    For example we are unable to insert special characters into pages. The Special Characters modal pops up when the ‘Omega’ button is clicked but the overlay remains over the model box.

    Disabling WPRM solves the problem.

    A quick fix is to add the following CSS to the admin_head:

    .mce-container.mce-panel.mce-floatpanel.mce-window.mce-in {
      z-index: 999999!important
    }

    This can be done by adding the following code to a theme’s functions.php file:

    function vr51_admin_css() {
         echo "
        <style type='text/css'>
    		.mce-container.mce-panel.mce-floatpanel.mce-window.mce-in {
    		  z-index: 999999!important;
    		}
        </style>
        ";
    }
    add_action( 'admin_head', 'vr51_admin_css' );
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Brecht

    (@brechtvds)

    Thanks for letting me know and the detailed information. Will look into a fix next week.

    Brecht

    Thread Starter Lee Hodson (VR51)

    (@leehodson)

    You are welcome Brecht.

    Plugin Author Brecht

    (@brechtvds)

    Hi again,

    We just released WP Recipe Maker 1.26.1 which should take care of this bug.

    Brecht

    Thread Starter Lee Hodson (VR51)

    (@leehodson)

    Thank you, Brecht. I ran a few tests and all is well now.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘TinyMCE Modal Conflict’ is closed to new replies.