Making the checkout exclusive to logged users
This feature is only valid if the user is logged in before accessing the /details page. If the IsAllowGuest
flag is set to false, the user will be redirected to the login page.
Once the user finishes login it will be redirected back to the checkout.
Ollie will include the value /details
in the query string parameter returnUrl
.
If the flag is true or does not exist, the user will be be able to access the checkout without having to login.
This feature is primarily for B2B businesses, which require customers to be logged in to be identified and place orders.
{
"props": {
"flags": {
"IsAllowGuest": false; // true or false
}
}
}
Updated 1 day ago