ONE-TIME POPUP - VELO BY WIX
- eggwebtut
- Mar 10, 2021
- 1 min read
masterPage.js Backend Code:
import {session} from 'wix-storage'; import wixWindow from 'wix-window'; $w.onReady(function () { // flag is not found if(!session.getItem("firstTimePopupShown")) { // open popup wixWindow.openLightbox("Lightbox Name"); // set flag for future visits session.setItem("firstTimePopupShown", "yes"); } } );
Page Code:
import {local} from 'wix-storage'; import wixWindow from 'wix-window'; $w.onReady(function () { if(!local.getItem("firstTimePopupShown")) { wixWindow.openLightbox("Lightbox Name"); local.setItem("firstTimePopupShown", "yes"); } } );
Comments