Hi, you helped me remove the image title on hover, but I also need to remove it from the icons. Can you help with that?
Sample: https://imgur.com/a/PyEH0Ph
Original ticket: https://kriesi.at/support/topic/image-title-on-hover/
Are you using this solution?
https://kriesi.at/support/topic/image-title-on-hover/#post-1490549
because there the selector is for all elements with title attribute ( *[title] ) – so this will include icons
Hi,
Thank you for the inquiry.
Try to add this code in the functions.php file to remove the title element inside the svg icons:
add_action( 'wp_footer', function() { ?>
<script>
jQuery(function ($) {
$('svg title').remove();
});
</script>
<?php }, 999 );
Best regards,
Ismael
Looks like that worked, thanks Ismael!
Hi,
Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
