Why does my Shopify landing page default to old custom slider position?

erinrado
Excursionist
20 0 5

I added a custom slider to my .liquid and .css and made a change to my global.js (code below). Now my home page lands on the area where the custom slider once appeared - even though I have moved the slider to another position. Any idea why? Thanks!

 

http://celticartstore.net

 

Global.js Code Addition:

 

onButtonClick(event) {
event.preventDefault();
if(event.currentTarget.name === 'next') {
this.step++;
if(this.step > this.sliderItems.length - 1) {
this.step = 0
}
} else {
this.step--;
if(this.step < 0) {
this.step = this.sliderItems.length - 1
}
}
this.currentIndex(this.step);
}

linkToSlide(event) {
const dotIndex = event.currentTarget.dataset.dot;
this.step = dotIndex;
this.currentIndex(this.step);
}

currentIndex(index) {
this.update(index);
}
}

customElements.define('featured-slider-component', FeaturedSliderComponent);

Replies 0 (0)