Slideshow.changeSlide() executes in Preview but not in Live

Homepage: https://www.genshin360.com/

The box on the right with the Domain Drops is a slideshow for the 7 days. I am trying to use slideshow.changeslide() to show the right slide based on the day of the week. Yesterday it worked fine. Today it keeps showing Sunday…

Because you wrote:

case 2:
            $w("#slideshow1").changeSlide(3);

instead of

case 2: 
	$w("#slideshow1").changeSlide(2);

By the way, there’s no need to use switch. You can just do:

$w("#slideshow1").changeSlide(Today.getDay());

I left that in while testing all the numbers but even with a hard coded 2 or with the Today.getDay() it just doesnt show the right slide

I simplified it as you suggsted. Changed the order in the slideshow to start with Sunday. This way day(0) should be the same as slide(0). The preview function in the editor shows the right day. The live published version keeps showing Monday…

// Show correct Slide for Farmables ---------------------

var TodaySlide = new Date();
$w( “#slideshow1” ).changeSlide(TodaySlide.getDay());

JD, I hope you are still around. To me this feels almost like a WIX bug instead of something that is coding related. The preview works fine.

I think you’re right.
@marlowe-shaeffer , I loaded his website with Bolt and it worked well, but when I loaded it with Thunderbolt it failed to switch the slide.

@Marlowe (Wix), is this a bug? Whats going to happen next?

Sorry for the delay—I didn’t see a notification that I was tagged. Yes, this is an issue on our end related to our performance rollout. Please check your site and let me know if the issue is now resolved. Thanks!

I think it works, thanks a bunch!