I create website use wix code. On desktop no problem, but on mobile its not showing.
this page
https://www.petit-halo.com/menu
I create website use wix code. On desktop no problem, but on mobile its not showing.
this page
https://www.petit-halo.com/menu
Ok have you published the site and you test the published one on your mobile? I think you have missed to Sync the data between Sandbox & Live. Click the Data Collection, click the Sync icon in the menu and choose to Copy all items to Live and then test again. I believe your live database is empty.
I solved.
wrote code mobile show
$w.onReady( function () {
});
import wixWindow from ‘wix-window’;
$w.onReady( function () {
if (wixWindow.formFactor === “Mobile”){
$w(“#repeater1”).show();
$w(“#repeater2”).show();
$w(“#repeater3”).show();
$w(“#repeater4”).show();
$w(“#repeater5”).show();
}
});
Ok so why do you have 5 repeaters on the page? I thought I only saw one repeater with 5 items inside. Very nice you solved the problem though, most important!
@andreas-kviby
This page is restaurant menu page.
so Lunch menu Dinner menu…etc I categorize it.
my opinion was explanation was insufficient.
@nanami Ok then I understand. Hope it will work for you now.
@andreas-kviby Thanks a lot!