Hello people,
I found a thread about disabling title of images when "mouse over". What I want is the opposite: is there a way to show title when "mouse over" partner logos?
Regards,
Flavio
Hello people,
I found a thread about disabling title of images when "mouse over". What I want is the opposite: is there a way to show title when "mouse over" partner logos?
Regards,
Flavio
Hello,
Open includes > helper-templates.php find this code.
$img = wp_get_attachment_image( $set['img'] , 'logo' );
Replace it with this
$img = wp_get_attachment_image( $set['img'] , 'logo' , '0' , $default_attr = array(
'alt' => trim(strip_tags( get_post_meta($attachment_id, '_wp_attachment_image_alt', true) )),
'title' => trim(strip_tags( $attachment->post_title )),
));
Regards,
Ismael
You must log in to post.