How Can We Help?

Search Plak article

Can’t Find an Answer ?

How to remove (Shipping & taxes included) from product/cart page ?

You are here:
← All Topics

In order to remove the (Shipping & taxes included) from both product and cart pages in Plak theme, please follow these steps :

How to remove (Shipping & taxes included) from product/cart page ?

On product page

  1. From your Shopify dashboard, click Online store => Actions => Edit code
  2. Open the files prod-template1.liquid ; prod-template2.liquid and prod-template1-preorder.liquid
  3. 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

  1. From your Shopify dashboard, click Online store => Actions => Edit code
  2. open the file cart-template.liquid 
  3. 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]

Table of Contents