This topic has 6 replies, 2 voices, and was last updated 2 years, 1 months ago ago by Rose Tyler
Hello,
How can I remove the image titles on hover from the entire website? Check private
Thanks
Hello,
Please check this topic – https://www.8theme.com/topic/turn-off-tooltips-text-on-single-product-page-images/
Regards
Thank you.
This snippet removes some image titles but not from the product page. Can you share a snippet which removes from there as well?
Check private:
Hello,
You can use custom CSS code as a workaround:
1/ for Single product gallery images
.swipers-couple-wrapper .swiper-wrapper img {
pointer-events: none;
}
2/ for Shop page products
.content-product .product-content-image img {
pointer-events: none;
}
3/ Or you may add next css snippet to globally remove title on hover for images that have one
img[title] {
pointer-events: none;
}
Regards
Thank you,
Are there any disadvantages to disabling the title with CSS instead of js?
You’re welcome!
CSS is the simplest way.
Regards
Tagged: best selling, hover, image title, remove, themes, woocommerce
The issue related to '‘How can I remove image title on hover ???’' has been successfully resolved, and the topic is now closed for further responses