Skip to content

Commit

Permalink
Replaced depreciated liquid property/value (Shopify#2480)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoboludo authored Apr 3, 2023
1 parent 2bf3e57 commit f2846d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sections/featured-product.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@
price_class: 'price--large'
-%}
</div>
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
{%- if cart.taxes_included or shop.shipping_policy.body != blank -%}
<div class="product__tax caption rte">
{%- if shop.taxes_included -%}
{%- if cart.taxes_included -%}
{{ 'products.product.include_taxes' | t }}
{%- endif -%}
{%- if shop.shipping_policy.body != blank -%}
Expand Down
4 changes: 2 additions & 2 deletions sections/main-product.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@
price_class: 'price--large'
-%}
</div>
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
{%- if cart.taxes_included or shop.shipping_policy.body != blank -%}
<div class="product__tax caption rte">
{%- if shop.taxes_included -%}
{%- if cart.taxes_included -%}
{{ 'products.product.include_taxes' | t }}
{%- endif -%}
{%- if shop.shipping_policy.body != blank -%}
Expand Down

0 comments on commit f2846d5

Please sign in to comment.