How to prevent user from editing the profile or going to the profile page.
Last Post 10/30/2013 7:13 AM by Cam. 2 Replies.
Author Messages
Cam
Posts:99


--
10/26/2013 8:45 AM  
When I use the following:

<dnn:USER ID="USER2" runat="server" Text="register" />


It allows the user to register. Once the user has logged in it changes to the display name and becomes a link that allow the user to edit or view their profile.

How can I prevent the user from viewing or editing their profile. Or remove the link all together?

Regards
Joseph Craig
DNN MVP
Posts:11667


--
10/28/2013 9:36 PM  
You could change permissions to the Activity Feed and My Profile pages.

Doing the above would generate an error if someone actually tried it. Better would be to replace those pages with ones that don't have the appropriate modules.

Another approach would be to remove the links to those pages.

Some combination of the above to keep out casual users, and to also keep out users who know how the default pages are constructed.

You can also use the Profile Settings pages to make all profile fields visible only to administrators.


Joe Craig, Patapsco Research Group
Complete DNN Support
Cam
Posts:99


--
10/30/2013 7:13 AM  
Thanks so much.


---