No sir
I have these files
A Shopify store owner selling fabric by the meter needs a quantity selector that accepts decimal increments (0.5m, 1m, 1.5m, etc.), but Shopify’s cart system only accepts integer quantities.
Core Issue:
Workaround Solution Provided:
DevoloperCZ implemented a dropdown menu approach:
<select> element displays decimal values (0.5, 1, 1.5) to users{{ i|divided_by:2.0 }} to display halves while submitting whole numbersImplementation:
Alternative:
A third-party app (Measura: Sell by Weight & More) was suggested as a ready-made solution with configurable min/max values and increment steps.