Hi
For everyone looking to “customize” the page which shows up, if a user doensn’t have a pricing plan, here’s a workaround:
In you Standard Plans & Pricing Page add this code:
import wixLocation from 'wix-location';
$w.onReady(function () {
let queryParams = wixLocation.query;
if ("appSectionParams" in queryParams) {
wixLocation.to("/preise?NoPlanRedirect=true"); //This is redirect to the page you want the user to land on, when he has no pricing plan.
} else {
$w('#section1').expand(); // This is the Section or Strip of your Standard Pricing Plans Widget. You have to set it to "collapsed" on load.
}
});