• Resolved SYNC4489

    (@sync4489)


    Hi,

    Since last update to Woo 4.5.x there are very annoying tooltips in the order page opening on mouseover, but often they are hard to go away.
    Furthermore, they are quite useless as they don’t really show anything important to the shop manager/admin.

    Is there a way to switch them off?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Support fevered – a11n

    (@fevered)

    Hey there!

    Can you send a screenshot of the tooltip you are speaking of? I recommend https://snipboard.io for easily sharing screenshots – please follow the instructions on the page, then paste the URL in your response. It works with Chrome, Firefox, Safari, and Edge.

    Thread Starter SYNC4489

    (@sync4489)

    Hi, thanks for your fast reply

    here’s the screenshot as an example of the tooltip:
    https://snipboard.io/MLSnWe.jpg

    Very often, the tooltip just stays there, even on mouseout… If you move the mouse too fast there are tooltips popping up everywhere and disappearing… quite a mess.
    In short, we were better without them :)))

    is there a way, a snippet to turn them off?

    Thanks in advance

    Plugin Support Tseten a11n

    (@tibetanitech)

    Thank you for the screenshot. If you want to disable the tooltip completely, you can do it via custom CSS. You can add the following custom CSS in WP-Admin > Appearance > Customize > Additional CSS:

    
    div#tiptip_holder {
        display: none !important;
    }
    

    I hope that helps!

    Thread Starter SYNC4489

    (@sync4489)

    Hi,

    thanks for your reply!

    yes, of course the css rule will work, but I was hoping something better to completely disable the feature.
    Even if the tooltip is hidden by css, the javascript is still loaded and triggered and the divs (hidden) are modified.
    Not a big problem, but indeed a bit of a waste of resources…

    Anyway, the css solution is still better than nothing, let us know if you have a more radical/elegant one :))

    @sync4489 Did that css work for you, for some reason it is not working for me at all.

    Thread Starter SYNC4489

    (@sync4489)

    Hi @samadamdesigns
    Yes it did work. As I said above, it’s not really the solution I was expecting as it’s more a “dirty hack” than a real solution, but it gets the job done.

    Where did you put your CSS lines? Because I think that what Tseten suggested works only to modify the frontend CSS and not the admin…

    Try to add this to the functions.php of your theme or with a snippet plugin:

    add_action('admin_head', 'custom_admin_css');
    
    function custom_admin_css() {
    	echo '<style>
                       div#tiptip_holder {
                           display: none !important;
                       }
                    </style>';
    }
    

    Hope this helps

    Hey, I actually figured out a better way with a function:

    // remove tiptip box
    add_action( ‘wp_print_scripts’, ‘de_script’, 100 );

    function de_script() {
    wp_dequeue_script( ‘jquery-tiptip’ );
    wp_deregister_script( ‘jquery-tiptip’ );

    }

    It worked great for me, let me know if it works for you as well.

    Plugin Support Tseten a11n

    (@tibetanitech)

    Thank you everyone for sharing your knowledge with us. @sync4489’s shared code worked for me.

    Since the code works and resolves the behavior I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Annoying tooltip with latest updates’ is closed to new replies.