Hey,
- In your Shopify Admin go to online store > themes > actions > edit code and search theme.liquid file.
- In your theme.liquid file, find the (press CTRL + F on Windows or command + F on Mac)
- paste this code right above the tag:
Goal: Remove .00 on one-time purchase prices (e.g., $8.00 → $8) while preserving decimals for non-integers (e.g., $7.20 stays $7.20).
Context: Prices on the product page may be generated by the ReCharge subscriptions app. If so, theme-based formatting changes will not apply.
Tried/Proposed:
Status: Unresolved. The key blocker is whether ReCharge controls the price rendering.
Next steps:
Notes: Liquid variables/filters are central to the solution.
Hey,