top of page
Lanre Olayiwola

Lanre Olayiwola

Creating a One Time Popup with Corvid (Wix Code)

Updated: Jan 1, 2024


Notification/popup


// For full API documentation, including code examples, visit https://wix.to/94BuAAs

import wixWindow from 'wix-window';
import {session} from 'wix-storage';

$w.onReady(function () {

	//TODO: write your page related code here...
	session.removeItem("popupPromotion")

	if (!session.getItem("popupPromotion")) {
		wixWindow.openLightbox("Announcement")
		session.setItem("popupPromotion", "yes")
	}
});

Have fun!

Comments


bottom of page