Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #499047

    Hi!

    Ok, this one I can’t find a resolution to.

    On one image on one page (WEST), I have hotspots 1-11, which worked perfectly.
    Now, on another page, with a different image (EAST) I want to start the hotspots at 12.

    Is there a solution to that?

    Thanks in advance.

    #499615

    Hi,

    Drag a Code Block element somewhere in that page and put this code in it:

    <script>
    (function($){
        $(window).load(function() {
        	$('.av-image-hotspot_inner').each(function(){
                var theNum = parseInt($(this).text()) + 11;
                $(this).text(theNum);
             });
        });
    })(jQuery);
    </script>

    Regards,
    Josue

    #499630

    You are awesome! Thank you!

    #499666

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.