Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #184088

    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

    #184153

    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

    #184544

    Perfect! Thank you so much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Easy Slider – File name appearing when Hovering’ is closed to new replies.