Redirect with Slideshow & Button

Topic summary

A user wants to make both a slideshow image and its button redirect to their Wish page.

Proposed Solutions:

  • Theme Editor approach: First check if the theme’s built-in settings allow adding URLs to “Slide link” and “Button link” fields that point to the Wish page.

  • Custom code solution: If the theme doesn’t natively support clickable slides, implement:

    • A data-link attribute on slide elements
    • JavaScript to detect clicks on the slide (while preserving normal link/button functionality)
    • CSS to show a pointer cursor on hover
    • This makes the entire slide area clickable while keeping the button functional

Current Status:

The discussion remains open. One responder offered to directly help with setup if given collaborator access to check the theme code. The user hasn’t confirmed which theme they’re using or whether they’ve attempted the suggested solutions.

Summarized with AI on October 23. AI used: claude-sonnet-4-5-20250929.

Hello,

I want that the full slidepicture redirect me to my Wish page and with the Button also, how can I do it?

You’ve me been dropping a few things about this same theme customization. Have you been able to get a solution? Maybe a personalized action would be better

Hi,

Hope this will help

  • Try the Theme Editor first: fill Slide link/Link and Button link with your Wish URL.

  • If your theme doesn’t support clickable images, add the slide_link setting, the small Liquid snippet, and the JS/CSS

Make the whole slide clickable (JS + tiny CSS) Example

<style>
  .slideshow__slide[data-link] { cursor: pointer; }
</style>

<script>
  document.addEventListener('click', function(e){
    const slide = e.target.closest('.slideshow__slide[data-link]');
    if(!slide) return;
    // Let normal links/buttons keep working
    if(e.target.closest('a, button, input, textarea, select, label, summary')) return;
    const url = slide.getAttribute('data-link');
    if(url) window.location.href = url;
  });
</script>

  • Now image click + button click both go to your Wish page.

@MS2333

Hi, Which is theme you using? You can check on slide’s setting at first, check here have any file to set url file?

If the theme not support you can give me the code of collaborator i will check and help you setup.