
Hello Experts,
We are trying to build a feature where customers that are accessing the portals are restricted from doing any of their usual functions that they do in portal. Customers have to complete a survey once in every few months. Every time the customer login, there will be a check whether the particular portal user has completed the survey or not, if they have not then we should just show the survey page and restrict all other functionalities. Once they complete the survey, then enable all the functionalities back on to them. Have anyone built something like this? are they any recommendations?
Thanks in advance!
Hi,
I have built something similar but that was related to password. So in my case, I have the field "Reset Password", if this field is set to yes then the user has to change the password before using any of the functionality. I achieved this by adding a global JavaScript which checks if that field is yes then redirect to Change Password page. With this, whenever user is clicking on any page, the global js works, checks the value and then redirects to change password.
You can implement this in similar way.
Hope this help.