https://www.alphastrikers.store/products this is the site
Hey Buba
Your if statement is placed outside the onReady() function of the page, that’s why it’s not working on mobile.
if(wixWindow.formFactor === "Mobile") {
$w("#GamepageDropdown").show();
}
I suggest that you move it inside the onReady() function.
$w.onReady(function () {
if(wixWindow.formFactor === "Mobile") {
$w("#GamepageDropdown").show();
}
});
Hope this helps~!
Ahmad