Hi all,
I'm new to Kentico, so I apologize for any misuse of terminology.
I've created a web part. Its code checks to see if the user is a member or a non-member. If they're a non-member, they're redirected to a page that says the page is members only.
I created a widget with this web part and placed it in a page in the CMS editor. However, now when I try to go that page in the CMS, it's redirecting me to the "is members only" message page.
How then do I allow CMS users to edit the content of the page? Is there a setting in the widget or web part?
Thanks in advance for your help!
How are you determining if they are a member? You can probably do this without creating a custom web part and using page permission.
In your code you can detect the viewmode, I believe CMSContext.ViewMode is the code you need, and just check if it is livesite before redirecting.
CMSContext.ViewMode
Awesome. Thank you so much! That's exactly what I was looking for.
Please, sign in to be able to submit a new answer.