I’m using the following to post a Lightbox on all pages of my site:
import {
local
}
from ‘wix-storage’;
import wixWindow from ‘wix-window’;
$w.onReady( function () {
if (!local.getItem(“firstTimePopupShown”)) {
wixWindow.openLightbox(“Subscribe”);
local.setItem(“firstTimePopupShown”, “yes”);
}
});
What I’d like to do is suppress this Lightbox from coming up on some of my pages regardless if it is their first time visiting. What is the process for doing so using this code/function?