Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi Mariza_kou,

    try to add this code in the file functions.php of your theme:

    function yith_add_remove_alt(){
    	ob_start(); ?>
    	<script type="text/javascript">
    		jQuery(document).ready(function(){
    			jQuery('a.yith_magnifier_thumbnail').each(function(){
    				var t = jQuery(this);
    				t.attr( 'title', '' );
    			});
    		});
    
    	</script>
    	<?php
    	echo ob_get_clean();
    }
    
    add_action( 'wp_footer', 'yith_add_remove_alt' );

    Bye!

    Thread Starter mariza_kou

    (@mariza_kou)

    Thank you for your reply!!
    But this didn’t work for me..
    Any suggestions?

    Thread Starter mariza_kou

    (@mariza_kou)

    This didn’t work for me, but i found a solution that fit me ( if anyone else is interested)

    Add to footer.php before </body>:

    <script type="text/javascript">
    jQuery('document').ready(function($){
    	$('[title]').removeAttr('title');
    });
    </script>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove hover thumbnails' titles (with activated slider)’ is closed to new replies.