Yes, that was it! For some reason that was missing from the liquid code. Added it in and fixed it right away. Thanks so much!
Topic summary
-
Issue: On a Shopify store using the Supply theme, the cart “subtotal” field appeared blank, while express payment options still reflected the correct amount. A screenshot was provided.
-
Diagnosis: The subtotal wasn’t rendering because the Liquid code responsible for outputting it was missing in the cart template. (Liquid is Shopify’s templating language.)
-
Fix: Insert the subtotal output snippet: {{ cart.total_price | money_with_currency }} to display the amount with currency formatting.
-
Outcome: After adding the missing line, the subtotal displayed correctly.
-
Status: Resolved; no further action or open questions. Implication: Pricing logic was intact on the backend—this was a presentation issue caused by a missing template snippet.