StoreHippo provides the support for adding a custom verification success page in your store. Usually, after the successful verification, the user is redirected to the default verification success page provided by the StoreHippo. However, you can create your own custom page and set it as a verification success page. Once you have defined the verification success page, the user will be redirected to that page after the successful verification. To add the verification success page, follow the steps mentioned below:
First, you need to add the template for the verification success page. To do so, follow the steps given below:
Once you have added the custom page, you need to specify the page in the redirection URL. To do so, follow the steps mentioned below:
ms.bind ('ms.user_verified', function(event) {
ms.goTo("/page/verification-page");
event.preventDefault();
});
Now, the verification success page will be added. After the successful verification, the user will be redirected to this page. the verification success page is provided by StoreHippo but you can also create a custom page and provide its URL here.