Hi there!
I have a problem with the Featured Product section on the bottom of the homepage (SHOWCASE theme). On some computers, when clicking the swiper button / arrow on the Image Slider, it seems to refresh the page and jump to the top of the homepage. It doesn’t happen on any of my computers, but on my clients’ it does. Any ideas how to solve?
https://www.loom.com/share/96988b9c4694449dba06782aefa4a6da
https://www.bloomandwolf.com/
password: skeach
Hi @HenrietteVB
You can follow these steps:
- Online Store → Themes → Edit code:
2, Find the theme.liquid file and add this code before the . tag
<script>
$('a.swiper-button-prev').click(function(e) {
e.preventDefault();
});
$('a.swiper-button-next').click(function(e) {
e.preventDefault();
});
</script>
We hope this can help you.
This doesn’t work - it hides the images entirely..
Hi @HenrietteVB
You can try adding this code before the . tag:
document.querySelector('a.swiper-button-prev').addEventListener("click", function(e) {
e.preventDefault();
});
document.querySelector('a.swiper-button-next').addEventListener("click", function(e) {
e.preventDefault();
});
Hope this can help you.