Pricing filter should start with lowest price we have. If lowest price is 625 for example then filter should start from 600 and not 0Come back
Topic summary
A user reports that the pricing filter on their store starts at 0 instead of beginning near the actual lowest product price (e.g., starting at 600 when the lowest item costs 625).
Proposed Solution:
Another participant provides code modification instructions:
- Navigate to Online Store → Theme → Edit code
- Locate Snippet → price.liquid
- Replace specific code segments with provided snippet to adjust filter behavior
Status: The discussion includes technical implementation steps but lacks confirmation whether the solution was tested or resolved the issue. The conversation appears to be ongoing without a verified outcome.
Which theme are you using ?
To change you follow the instruction:
- Go to Online Store->Theme->Edit code
- Snippet->/price.liquid->Replace code position:
Find these replace this with new code below
if use_variant
assign target = product.selected_or_first_available_variant
else
assign target = product
endif
(new code )
assign target = product.selected_or_first_available_variant
