All things Shopify and commerce
Hi,
I want to create a landing page where all my products are on full price for a collab deal that is valid for a certain user base. I don't want this to interfere with my collection page where some other discount is going on.
Can someone please help.
Thanks!
Hi,
Set up a collection for the collab deal with full-price products
Create landing page that links to this collection
Customize theme to ensure that full prices are displayed
Logic to display full price code example
{% if collection.handle == 'collab-deal' %}
{% assign show_discount = false %}
{% else %}
{% assign show_discount = true %}
{% endif %}
{% for product in collection.products %}
{% if show_discount %}
<!-- Display discounted price -->
<p>{{ product.price | money }}</p>
{% else %}
<!-- Display full price -->
<p>{{ product.compare_at_price | money }}</p>
{% endif %}
{% endfor %}
Update the navigation
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025