Landing page available only with purchase or subscription??

Solved

Landing page available only with purchase or subscription??

TMH
Visitor
2 0 0

I would like to have some pages on my website that are only available to people who have paid for access to the page. I tried password protecting the pages but I would like to have the password be customer specific. Is there an app that allows customers to subscribe to pages on my website that when they logon to the website they have access to?

Accepted Solution (1)

PaulNewton
Shopify Partner
7722 678 1628

This is an accepted solution.

HI @TMH this is content gating, or a membership site customization.

 

Merchants can contact me to get this customization setup for them , info in sig. Please provide context (store url,theme name, any post url, and problem details) 

 

There's 2 parts the frontend modifications to allow viewing content, and the tracking of the actual indication of when a customer is actually made a purchase.

 

Apps like locksmith can enable this gating the content, or you can customize a theme using customer tags to control what logged in customers can view.

 

A customization can be as simple as changing the layout file theme.liquid to wrap the {{ content_for_layout }} tag, or {{ content_for_index }},  with a conditional check:

Always backup  themes before changing code.

 

{%- if customer and customer.tags contain 'member' %}
 {{ content_for_layout }}
{%- endif -%}

 

 

To track the actual indication of when a customer is actually made a purchase. You can use the now free shopify-flow app to automate tagging customers , or another tagging app. There's also an automation app like usemechanic(makers of locksmith) to handle customer information and tagging in more complicated scenarios.

 

If needing to DIY plenty of topics already in the forums on both apps, and for the customization also look at wholesale customizations using tags. Search some combination of keywords i've used here.

 

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


View solution in original post

Replies 3 (3)

PaulNewton
Shopify Partner
7722 678 1628

This is an accepted solution.

HI @TMH this is content gating, or a membership site customization.

 

Merchants can contact me to get this customization setup for them , info in sig. Please provide context (store url,theme name, any post url, and problem details) 

 

There's 2 parts the frontend modifications to allow viewing content, and the tracking of the actual indication of when a customer is actually made a purchase.

 

Apps like locksmith can enable this gating the content, or you can customize a theme using customer tags to control what logged in customers can view.

 

A customization can be as simple as changing the layout file theme.liquid to wrap the {{ content_for_layout }} tag, or {{ content_for_index }},  with a conditional check:

Always backup  themes before changing code.

 

{%- if customer and customer.tags contain 'member' %}
 {{ content_for_layout }}
{%- endif -%}

 

 

To track the actual indication of when a customer is actually made a purchase. You can use the now free shopify-flow app to automate tagging customers , or another tagging app. There's also an automation app like usemechanic(makers of locksmith) to handle customer information and tagging in more complicated scenarios.

 

If needing to DIY plenty of topics already in the forums on both apps, and for the customization also look at wholesale customizations using tags. Search some combination of keywords i've used here.

 

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


TMH
Visitor
2 0 0

Thank you!

Cluthesofficial
Visitor
2 0 1

Hello, I was looking to do something similar with my upcoming online store, do you think you could help me with that? I was looking where to contact you but I didn't see any options so I am replying to this comment here. Let me know if you do these sort of things, thank you.