Stopping users from turning off javascript Answered
We don’t have gated paged but use pop up modals to show ‘this is for pro members only’ - that means people can obviously turn off javascript (or delete the modal in ’inspect) to see the whole content - which I’d love to solve but know I probably can’t. BUT ALSO, people can actually just copy/paste all the content on our pages really easily without signing up. How has anyone else gotten around that?
like is it possible to do it with CSS but only for non-logged in members?
Comments
8 comments
Hey Ben! Based on my experience, same page experience is going to cause a few too many headaches. Last thing I would want if I was in your shoes is revenue loss due to reasons you just stated.
If you have not thought of a proper same page architecture, I would encourage you to rethink architecture and include gated pages 🤔
Of course, I’m lacking context, and your use case might require same page experience, so take it with a grain of salt 😅
hm yeah realistically gated pages just dont work for us, it’s more like a paywall for news site articles - thats how ours is set up, and needs to be imo.
Could you give more context how that works? A person clicks on an article, and gets same page experience on that article, or gets forwarded to the article page?
yeh looks like this
Hey Ben, I can send you a few things your way that prevents:
Add this code to the header of your individual pages to redirect users when is JS disabled.
https://www.memberstack.com/javascript-required
to your own website.That's a built in feature to browsers / HTML, so it's guaranteed that if JS is disabled, browsers will redirect folks to a page of your choosing.
Ooooh nice, so it's basically denying access to users that have no JS enabled 😍
You can place the following code in the footer of your pages.
Again, just update the /javascript-required path to wherever you want to send people.
The above will redirect folks to your set page if Memberstack fails to load for any reason.
This should be added to every Memberstack site ❤️
Thanks a lot for sharing Tyler Bell
Please sign in to leave a comment.