top of page
Search

ONE-TIME POPUP - VELO BY WIX

  • Writer: eggwebtut
    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"); } } );




 
 
 

Recent Posts

See All

Comments


bottom of page