Hi guys, so I have my website (https://primeindoors.com/) but wanted to ask how can I like add the login password page to specific pages or sections within my website.
For example I have a specific set of subscriptions based customers, and I wanted them to access a special but different set of products on my website. But cant figure it out how to get this done.
Hello Harrygoat, to add password to specific pages or section on your Shopify, here are 3 methods you can consider using
- Custom Password Protection Using Liquid
- JavaScript + Hidden Content (Basic Security Only)
- Use a Shopify App ( locksmith or Easylockdown
Hi,
Hope this will help
- Enable Customer Accounts
- Tag your special subscribers
- Create your special page or product
- Lock that page using customer tags by using special page template
Example of special page template code
{% if customer and customer.tags contains 'subscriber' %}
{{ page.content }}
{% else %}
This page is for subscribers only. Please log in.
{% endif %}