Hi Michael,
Please open snippets/product-block-qty-breaks.liquid
Find the following code (around line 144):
<span class="product-qty-break-total">
{% if compare_total > total %}
<span class="visually-hidden"> {{ 'product.sale_price' | t }} </span>
<span data-total>{{ total | money_without_trailing_zeros }}</span>
<s>
<span class="visually-hidden"> {{ 'product.regular_price' | t }} </span>
<span data-compare-total>{{ compare_total | money_without_trailing_zeros }}</span>
</s>
{% else %}
<span data-total>{{ total | money_without_trailing_zeros }}</span>
{% endif %}
</span>
And replace it with:
<span class="product-qty-break-total">
{% if compare_total > total %}
<span class="visually-hidden"> {{ 'product.sale_price' | t }} </span>
<span data-total>{{ total | money }}</span>
<s>
<span class="visually-hidden"> {{ 'product.regular_price' | t }} </span>
<span data-compare-total>{{ compare_total | money }}</span>
</s>
{% else %}
<span data-total>{{ total | money }}</span>
{% endif %}
</span>
As you can see from the code above, we are changing the money_without_trailing_zeros filter to just money
Please note that the money filter depends on how you have set the currency formatting in your store' settings.
