Hi
I would like to remove the image-tooltips on mouseover.in the gallery.
how can I achieve this?
see: https://dl.dropboxusercontent.com/u/31618162/ScreenShot.jpg
Best regards
Will
Hi willblueland!
You can follow the instructions in the below thread to remove the gallery tooltip:
https://kriesi.at/support/topic/can-you-remove-tooltips-from-galleries-only-and-not-globally/
Best regards,
Dake
Hi Drake,
and how would that work globally:
1. Only in the gallery?
2. On the whole site?
Best regards
Will
Hey!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_tooltip(){
?>
<script>
jQuery(window).load(function(){
jQuery('a').removeAttr('title');
jQuery('img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_tooltip');
Regards,
Yigit
hey Yigit, great!
I put it in the functions.php of enfold child theme – it works!
Best regards!
Will
Hey!
Clicking the link takes me to “vorlage-reise-anfragen” page. What exactly is the issue? If your contact form is not working, please refer to this post – http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/ :)
Cheers!
Yigit
Hey!
The problem was a box with validation. If there is a 0 inputs (zero), then not sent the form. In this case, it was about the number for a reservation. If you typed 0 here then nothing has been sent. If you typed 1, the mail was transmitted. Once the validation has been switched off, the problem was eliminated.
Puuuh!
;-))
Best regards
Will