Remove "Shipping Calculated at checkout" from the Cart

Hi, I would like to ideally LEAVE “Tax included” but would like to remove “Shipping calculated at checkout” as I offer free shipping on all products. If this is NOT doable then please could you tell me how I remove the whole sentences?

Many thanks in advance,

Alun

1 Like

Hi @Alun

Would you mind to share your Store URL website? with password if its protected. Thanks!

Hi @Made4uo-Ribe !

The url is https://www.snowdoniahoney.com - no password.

Many thanks

1 Like

Thank you check this one.

This code will remove all the sentence.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
small.tax-note.caption-large.rte {
    display: none;
}
  • And Save.

I manage to put it again the Tax Included. But this will bne look like.

If you like it here is the code.

  • Same Instruction.
.totals:after { 
content: "Tax Included";
 padding-top: 10px; 
} 
.totals {
flex-direction: column;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

2 Likes

Hi @Alun ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :

Best regards,

Anthony

Thank you @Made4uo-Ribe - you’re a Shopify Genius!

1 Like