Product Pricing is not displayed on my private password collection.

I have a bunch of products in a password protected private collection. Here is the code for the collection:

{{ product.price | money }}
{% if customer.tags contins ‘private’ %}
{% section ‘main-collection-product-grid’ %}
{% else %}

Please login to view this collection

Login
{% endif %} .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; }

Use the following code

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

done