import {local} from ‘wix-storage’;
import wixWindow from ‘wix-window’;
$w.onReady(function () { if(!local.getItem(“firstTimePopupShown”)) { wixWindow.openLightbox(“Announcement”);
local.setItem(“firstTimePopupShown”, “yes”);
} } );
I used this code and followed all the instructions on the wix tutorial but it keeps popping up on the home page of my members profile. Which is where i stored the code because thats the site i want the member too see it for the first time.
The lightbo is linked to 4 other lightboxes through a button because it’s a intro tutorial on the site. Could this be causing the continues pop-up every the member visits the site?
please help!