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
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025