Why is the subtotal blank in my cart on TiaWella Creations?

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.

Summarized with AI on January 16. AI used: gpt-5.

Hello, I am hoping someone can help. My site is TiaWella Creations

When I am in my cart on my site, the “subtotal” is coming up blank. There is nothing listed next to it but yet my other payment options are showing the options based on what the subtotal would be. Screen shot attached for reference. How would I go about fixing this? I am using the Supply theme.

hi

Make sure that the Liquid code used to display the subtotal is correct. You should use the

{{ cart.total_price | money_with_currency }}

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!