Light box does not open in mobile version

Hi,

I have a table and when clicking on a row depending on the user role a light box appears, this works all fine on pc but on my mobile phone the light boxes do not appear. Any suggestions?

Thanks!

Have you checked the lightbox settings on the mobile editor itself.
https://support.wix.com/en/article/editing-your-lightbox-in-the-mobile-editor

Hi!

Yes I have, but I have only one that is displayed automatically, the other ones are with code. Only the one configured to display automatically is not showing on my phone.

I’m having the opposite problem. I have a lightbox that opens with the press of a button and I used code for that. It is not opening on the mobile version when i press the button.

Here is my code ( it works on desktop but does not on mobile):

   $w('#button1').onClick((event) => {
        wixWindow.openLightbox("MyLightbox", {
            serviceName: "data Info",
        });
    })