Hi @ZachariaAccessories 
This usually depends on where your quantity-break pricing is coming from.
If you’re using Shopify’s native pricing fields, Shopify generally displays the product’s actual price (or price range between variants), not the lowest possible price that a customer could unlock by purchasing a larger quantity.
In your example:
-
1–2 items = £5 each
-
3–11 items = £4.50 each
-
12+ items = £4 each
Shopify will normally show the current product price, whereas you’re looking for a “starting from the best possible unit price” display:
From £4
rather than:
From £13.50 (3 × £4.50).
The first thing I’d check is whether the quantity breaks are being generated by:
-
A quantity discount app
-
Shopify Functions
-
Shopify B2B pricing
-
Custom code
If an app is handling the discounts, the product page often doesn’t have direct access to the lowest tier price through Shopify’s standard Liquid variables. In that case, the display logic usually needs to come from the app itself, or from custom code that reads the discount tiers and outputs the lowest value.
From a UX perspective, I’d also be a little careful here. Showing “From £4” can be effective, but only if customers can immediately see why that price is available. Otherwise some shoppers may expect to pay £4 for a single item and feel confused when the actual price updates after quantity selection.
A format I’ve seen work well is something like:
£5 each
Buy 12+ and pay as little as £4 each
or
Volume pricing available from £4/unit
That keeps the pricing transparent while still highlighting the best available deal.
If you’re comfortable sharing:
someone may be able to point you to the exact Liquid file or setting that controls the displayed price.
I’ve run into similar situations with product-option and pricing apps where the storefront was showing the current subtotal instead of the lowest achievable unit price. In those cases, the solution ended up being either a small theme customization or a pricing widget provided by the app itself. For example, some apps such as Easify Custom Product Options allow merchants to set quantity-based pricing and control how pricing information is presented, but whether that’s possible in your case depends entirely on how your quantity breaks are currently being generated.
Could you share which app or setup is creating the quantity discounts? That will make it much easier to determine whether this is a theme issue, an app limitation, or something that can be solved with a small Liquid adjustment.