Financing, tax rates, and accounting
Hello
I am trying to add VAT breakdown line in the checkout section (before the user has bought the product) underneath the Total amount. I have added an image for reference.
I have asked the Shopify AI assistant for help and have tried the following things:
- Searching for Shopify Apps. I have not found a free of charge app that would allow this. (Though, I would also be okay with a small charge at this point (<7€/m)).
- Editing the code directly. Shopify AI assistant has informed me the checkout section is no longer editable by code with the latest update.
Note also that the product prices should display the VAT included price everywhere. It is only during the checkout that the user should see that part of the price displayed includes VAT (and exactly how much VAT).
For reference, the store is in Estonia (EU).
I have spent ~10 hours trying to figure this out already, please help😅
Hi,
Hope this will work
- Option 1: Use a Low-Cost VAT App (Best Easy Option)
- Option 2: Add VAT Breakdown to Cart Page (Before Checkout)
Code example:
{% assign vat_rate = 0.20 %} {# For 20% VAT, change as needed for Estonia #}
{% assign vat_amount = cart.total_price | times: vat_rate | divided_by: 1.20 %}
<p><strong>Includes VAT (20%):</strong> {{ vat_amount | money }}</p>
- Option 3: Switch to Shopify Plus
Hi @redis213
I have encountered a very similar situation like you before on my store and I get below feedback from my colleagues. You can make them as a reference here and see which one is working on your store.
1. Please kindly check if your store is under Shopify Plus Plan, as only Shopify Plus Plan user can edit the checkout page content from checkout.liquid file. Otherwise you have no place to do customization.
2. You can use checkout editor from Shopify to add information you need. It can customize and edit the functionality and the appearance of your checkout page, you can see if it works or not.
3. Some apps can custom the information of checkout page and you can further check which element you would like to customize and have a test of high star rating apps to do the settings properly.
In fact, you can find out one article from Shopify Help Center about how to customize checkout pages. You can find all you need in this article directly and please read it carefully. I can feel you can find what need in the end here.
https://help.shopify.com/en/manual/checkout-settings/customize-checkout-configurations
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025