top of page
bottom of page
import { currentUser } from 'wix-users-frontend'; $w.onReady(function () { if (currentUser.loggedIn) { currentUser.getPricingPlans() .then(() => { $w("#welcomeText").text = `Ravi de vous revoir !`; }); } else { $w("#welcomeText").text = "Bienvenue, visiteur !"; } });