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

    Hi,

    We’re using two fullscreen slideshows on the page https://unterbaech.ch. There’s a hidden season switch active, which shows only one of the slideshows, according to the current season (winter or summer). Because of this, the scroll-down arrow in the fullscreen slideshow don’t work. To prevent users clicking on the link, that don’t work, I temporarily disabled it with a css solution (pointer-events:none).

    I’m wondering if there is any possibility to change the href-attribute of this link to another section. With this it should be work again :-) Perhaps with a modification in the function-file?

    Regards,
    Bernd

    #1251109

    Hey Bernd,

    Thank you for the inquiry.

    This is possible but we have to modify the themes\enfold\js\avia.js file and adjust this code around line 90:

    container = clicked.parents('.container_wrap:eq(0)').nextAll('.container_wrap:eq(0)');
    

    We could change eq value in the nextAll function from 0 to 1 so that it assigns the section after the hidden one as the container.

    container = clicked.parents('.container_wrap:eq(0)').nextAll('.container_wrap:eq(1)');
    

    Unfortunately, this will only work on desktop view.

    Best regards,
    Ismael

    #1332175

    Hi Ismael,

    Sorry for my late reply… I just forgot it. The problem was solved last year with your help. You can close this topic.

    Regards,
    Bernd

    #1332229

    Hi Bernd,

    Thanks for the update, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Possibility, to change the link of the scroll-down arrow in the fullscreen slide’ is closed to new replies.