In Private Password Protected Collection, the Collection title, descreption and image do not appear

In Private Password Protected Collection, the Collection title, descreption and image do not appear

Carol202
Visitor
2 0 0

I am trying to get the collection title, description, and image to appear when you logon to the private site. Here is my code:

{{ product.price | money }}
{% if customer.tags contins 'private' %}
{% section 'main-collection-product-grid' %}
{% else %}
<div class="page-width style_private">
<h2>Please login to view this collection</h2>
<a href="{{ routes.account_login_url }}">Login</a>
<!-- <a href="{{ routes.account_register_url }}">Register</a> -->
</div>
{% endif %}
<style>
.style_private{
text-align: center;
margin-top: 80px;
margin-bottom: 80px;
}
.style_private a{
text-decoration: none;
padding: 8px 15px;
border-radius: 5px;
background: #efefef;
margin: 0 5px;
}
</style>

 

Reply 1 (1)

HHenry
Shopify Partner
35 5 8

Use the following code

 

{%- for product in collection.products -%}
	{{ product.price | money }}
{%- endfor -%}

 

Done

If this is helpful, please Like and Accept the solution.