This topic has 5 replies, 2 voices, and was last updated 2 years, 1 months ago ago by Nick
Hello,
How do i turn off the tooltips: https://prnt.sc/ts836c ?
Thanks
Hello,
When you upload images in WordPress it has titles and this title is rendered when you show images, this is normal in WordPress, theme does not have option to hide that title appearance. You can either search for third-party plugins to hide image titles or try to remove it by adding the below code before
<script>jQuery(document).ready(function($) {
$(‘img[title]’).each(function() { $(this).removeAttr(‘title’); });
});</script>
Or maybe some solution from here will help you https://stackoverflow.com/questions/11257668/is-it-possible-to-hide-title-when-hovering-image
Anyway, it’s not related to theme.
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?
Thank you.
Hello @Nick,
Have you cleared cache? Could you provide URL and screenshot?
Regards
Please check my thread https://www.8theme.com/topic/how-can-i-remove-image-title-on-hover/#new-post, I accidentaly posted here.
The issue related to '‘Turn off tooltips text on single product page images’' has been successfully resolved, and the topic is now closed for further responses