How Can We Help?
How to remove (Shipping & taxes included) from product/cart page ?
In order to remove the (Shipping & taxes included) from both product and cart pages in Plak theme, please follow these steps :
On product page
- From your Shopify dashboard, click Online store => Actions => Edit code
- Open the files prod-template1.liquid ; prod-template2.liquid and prod-template1-preorder.liquid
- Remove the below entire code and click Save
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
<div class="product__policies rte">
{%- if shop.taxes_included -%}
{{ 'products.product.include_taxes' | t }}
{%- endif -%}
{%- if shop.shipping_policy.body != blank -%}
{{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }}
{%- endif -%}
</div>
{%- endif -%}
On cart page
- From your Shopify dashboard, click Online store => Actions => Edit code
- open the file cart-template.liquid
- Remove the below entire code and click Save
{%- capture taxes_shipping_checkout -%} {%- if shop.taxes_included and shop.shipping_policy.body != blank -%} {{ 'cart.general.taxes_included_and_shipping_policy_html' | t: link: shop.shipping_policy.url }} {%- elsif shop.taxes_included -%} {{ 'cart.general.taxes_included_but_shipping_at_checkout' | t }} {%- elsif shop.shipping_policy.body != blank -%} {{ 'cart.general.taxes_and_shipping_policy_at_checkout_html' | t: link: shop.shipping_policy.url }} {%- else -%} {{ 'cart.general.taxes_and_shipping_at_checkout' | t }} {%- endif -%} {%- endcapture -%}
[yasr_visitor_votes]