diff --git a/templates/catalog/_partials/product-prices.tpl b/templates/catalog/_partials/product-prices.tpl
index 400c04dc..bc6fde85 100644
--- a/templates/catalog/_partials/product-prices.tpl
+++ b/templates/catalog/_partials/product-prices.tpl
@@ -91,10 +91,12 @@
{hook h='displayProductPriceBlock' product=$product type="weight" hook_origin='product_sheet'}
- {if !$configuration.taxes_enabled}
- {l s='No tax' d='Shop.Theme.Catalog'}
- {elseif $configuration.display_taxes_label}
- {$product.labels.tax_long}
+ {if $configuration.display_taxes_label}
+ {if $configuration.taxes_enabled}
+ {$product.labels.tax_long}
+ {else}
+ {l s='No tax' d='Shop.Theme.Catalog'}
+ {/if}
{/if}
{hook h='displayProductPriceBlock' product=$product type="price"}
{hook h='displayProductPriceBlock' product=$product type="after_price"}