Tagged: easy slider
When hovering on the image in the Easy Slider, the file name appears which I would like to stop. I found a fix on the topic
https://kriesi.at/support/topic/easy-slider-image-name-file-name-when-hovering-it/
however it didn’t work.
The recommendation was to do the following:
You can edit js > avia.js, find this code on line 5-6:
$(document).ready(function()
{
Add this code below:
$(“.avia-slideshow li img”).attr(‘title’, ”);
I gave the file a different caption and Alt Text as well but neither over-rode the file name.
Any other suggestions on how to stop the file name from appearing on hover over the Easy Slider?
Thanks
Hey davidrk!
You can edit config-templatebuilder > avia-shortcodes > slideshow.php, find this code:
if($this->config['bg_slider'] != "true")
{
$html .= "<img src='".$img[0]."' title='".$linktitle."' alt='".$linkalt."' $markup_url />";
}
Replace it with:
if($this->config['bg_slider'] != "true")
{
$html .= "<img src='".$img[0]."' alt='".$linkalt."' $markup_url />";
}
Best regards,
Ismael
Perfect! Thank you so much!