Home Forums WoodMart support forum hide tooltips in product grid (hover cart icon)

hide tooltips in product grid (hover cart icon)

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #171948

    myIT.store
    Participant

    Is there any possibility to deactivate/hide those tooltips as shown in the attached photo?

    Attachments:
    You must be logged in to view attached files.
    #172010

    Hello,

    Thank you very much for choosing our theme and for contacting us.

    We can hide with custom CSS, now I am checking the way to hide only these tooltips. We need a little bit more time, I will get back very soon.

    Best Regards

    #172043

    Hello,

    Please add this code to the Theme Settings > Custom JS On document ready:

    jQuery('.woodmart-products-holder .woodmart-add-btn').tooltip('destroy');
    jQuery(document).on('pjax:end', function () {
    	jQuery('.woodmart-products-holder .woodmart-add-btn').tooltip('destroy');
    });

    This code would remove the tooltips from the shopping cart.

    Best Regards

    #173060

    Maria Olivo
    Participant

    Hi, i tried this for the add to cart icon and swatch size and works great, but i want to extend it to the wishlist button. I was trying something like this but didnĀ“t work.

    jQuery('.woodmart-products-holder .woodmart-add-btn, .woodmart-products-holder .woodmart-wishlist-btn, .woodmart-products-holder .woodmart-swatch').tooltip('destroy');
    jQuery(document).on('pjax:end', function () {
    	jQuery('.woodmart-products-holder .woodmart-add-btn, .woodmart-products-holder .woodmart-wishlist-btn, .woodmart-products-holder .woodmart-swatch').tooltip('destroy');
    });

    Please, can you test it and fix it.

    #173129

    Hello,

    Please use this selector: .woodmart-products-holder .woodmart-wishlist-btn a

    Best Regards

    #173252

    Maria Olivo
    Participant

    Excellent! it works just perfect. Thanks

    #173273

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘hide tooltips in product grid (hover cart icon)’ is closed to new replies.