All things Shopify and commerce
Is there any solution to display Bulk Discount prices on the Collection page? Should be in the form of 'From € X' and then showing the lowest price of the highest tier of the Bulk Discount.
Hi @BBoe
I hope you are doing good!
You can try this code, you can put it in product-item.liquid or product-card.liquid or similar file depending upon your theme and also there can be different variable for product like card_product so you can replace product with appropriate variable
{% assign lowest_price = product.variants | map: 'price' | sort | first %}
<p>From €{{ lowest_price | money }}</p>
Thanks!
Hey @BBoe - we do this for our merchants / brands by modifying how their price rendering works on the collection page. The reason why we do it this way is that the collection rendering logic is usually set up differently per theme and there's no direct way to modify it using a theme block as it's a core component of your theme.
Here's how the feature looks like on the Product page when volume breaks are setup using our app (Dollarlabs : Ultimate Discounts)
Basically, the same logic that we use on the widget is re-used on the collection page to show the lowest price per unit first.
Feel free to reach out if you have any questions - happy to assist 😉
Founder
• Dollarlabs: Ultimate Discounts (5★) – If you can think of a discount, you can build it
• Dollarback: Cashback & Loyalty (5★) – Simple cashback. Powerful loyalty.
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025