• Resolved olmanz

    (@olmanz)


    Hello,

    I’m facing issue when displaying the floating diagram (after clicking on a move). The window where the diagram is showed is very narrow. It worked perfectly before. It may be due to extension upgrades.

    I put the link of the page impacted.
    Thank you for your help
    Olivier

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author yo35

    (@yo35)

    Hi,
    The content of the window is managed by RPB Chessboard, but the window itself is managed by a library provided WordPress (jQuery UI).

    Yet, one of your plugins (ultimate-member) inserts in your page a CSS file (https://edlv.fr/wp-content/plugins/ultimate-member/assets/css/jquery-ui.css?ver=2.1.1) that modifies the aspect of the window. Unfortunately, this CSS file is designed for jQuery UI version 1.12.1, whereas the version of jQuery UI brought by WordPress is version 1.11.4. This is what breaks things.

    I suggest you report the problem to the authors of ultimate-member. I think I cannot do anything on my side.

    Thread Starter olmanz

    (@olmanz)

    Hello,

    The topic was solved after the help of the Ultimate Member team. See below what was done:

    In “functions.php” add the below code (important to be copy-pasted in plain text)

    add_action(‘wp_enqueue_scripts’,’dequeue_my_css’,9999);
    function dequeue_my_css(){
    wp_dequeue_style(‘um_ui’);
    wp_deregister_style(‘um_ui’);
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issue when displaying floating diagram’ is closed to new replies.