• Resolved havemaskwilltravel

    (@havemaskwilltravel)


    One year ago I also ran into this issue (see https://www.ads-software.com/support/topic/thumbnail-icon-missing/)

    The solution was to add the following script to Advanced > Custom JS code:

    setTimeout(function() { $(‘.slick-slide’).each(function() { var $this = $(this); $this.attr(‘data-options’, JSON.stringify({thumb: $this.attr(‘href’)})); }); }, 100);

    That worked up until recently. The thumbnail icon has disappeared again.

    The source code shows the following:

    <button data-fancybox-thumbs=”” class=”fancybox-button fancybox-button–thumbs” title=”Thumbnails (G)” style=”display: none;”></button>

    Do you perhaps have an updated solution to the problem of the missing thumbnails icon?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author arisoft

    (@arisoft)

    Hello

    Try the following code:

    $('a.kb-bg-slide-contain').each(function() { var $this = $(this); $this.attr('data-options', JSON.stringify({thumb: $this.attr('href')})); });

    Thread Starter havemaskwilltravel

    (@havemaskwilltravel)

    Excellent, that works.
    Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Thumbnail icon missing again’ is closed to new replies.