A merchant is struggling with collection page pricing for products that have $0.00 variants (special order items in larger sizes). The system automatically displays the cheapest variant price, showing $0.00 instead of the actual priced variants.
Current situation:
An app already handles product pages by showing “P.O.A” and an add-to-quote button
The issue is isolated to collection pages where the lowest price displays by default
Rejected solutions:
Hiding all collection page prices (would affect products with normal pricing)
Removing $0.00 variants entirely (would break the quote functionality)
Desired solution:
Display the first variant’s price on collection pages instead of the cheapest, or manually select which variant price appears.
Community responses provided:
Code modifications for collection-product.liquid to show first variant price instead of minimum
Alternative approach using card-product.liquid snippet
Video tutorial reference for displaying variant details on collection pages
The merchant reports difficulty locating the exact code in their theme, and their developer claims lack of documentation for custom solutions. The thread remains open with multiple code-based workarounds suggested but not yet confirmed as implemented.
Summarized with AI on November 9.
AI used: claude-sonnet-4-5-20250929.
Some of our products have variants listed as $0.00 as they are a special order item (mostly the larger sizes). The collections page is automatically showing the product price as $0.00 because it is the cheapest.
I already have an app that changes this price to show P.O.A on the product page and an add to quote button but I’m trying to find a workaround for the collections page.
So far I have considered the following options:
Hide all prices on the collections page - I don’t really want to do this as most products have a price for most variants
Remove the variants where we don’t have a price and say that they are available in the description - again I don’t want to do this because it won’t clearly show the sizes we can sell and the add to quote functionality (app) won’t work.
Find an app or code so that the price of the first variant shows on the collection page or manually choose which variant is displayed for that product.
I have seen this thread where it shows you how the code can be edited to show the first variant price but I can’t find it in my theme code. I have pasted the code from my theme that looks similar at the bottom of this post.
As you can tell, I have no coding/shopify experience and the developer I am working with is telling me that he can’t find documentation on a custom code that will work.
Can anyone help?
collection-product.liquid
{% for product in collectionBestseller.products limit: 2 %}
Count find that code. same issue with the prestige theme. can you help? is this the right place on my theme: product-form.liquid:
{%- comment -%}
Those are the option names for which we automatically detect swatch. For the color, we use them to display a swatch, while
for size, we use it to display a size chart (if applicable)
{%- endcomment -%}
{%- if section.settings.show_payment_button -%}
{{ form | payment_button }}
{%- endif -%}
{%- endform -%}
{%- if size_chart_page != empty -%}
{%- comment -%}If we have a size chart we capture the modal content (it must be displayed outside the form for proper positioning){%- endcomment -%}
{%- capture product_modals -%}
{{ size_chart_page.title }}
{{- size_chart_page.content -}}
{% include ‘icon’ with ‘close’ %}
{%- endcapture -%}
{%- endif -%}
{%- if section.settings.show_payment_button and selected_variant.available == false -%}