Hello,
I used the code below to remove the ‘tax included. shipping calculated’ message earlier but now its there again on all views. How can I remove from the add to cart page?
URL: dawgminded.com
password: audio
.product__policies.rte {
display: none;
}
1 Like
hello @dawgminded
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.template-product .product__policies{
display: none !important;
}
1 Like
@dawgminded
Please check following URL for help
https://community.shopify.com/c/Shopify-Design/Delete-Shipping-calculated-at-checkout/td-p/533355
To make sure that the “Shipping calculated at checkout” message applies to your store, you can place a test order on your page and see if the text is there. If it is, you’ll probably want to remove it. Here’s what you do:
- Go to your Shopify Admin page and select “Online Store>Themes”.
- Next to your theme name, select “Actions”.
- From the drop-down menu, select “Edit Languages”.
- You’ll see multiple options. Select the “Cart” tab.
- Scroll down, and you’ll see “Taxes and shipping at checkout,” and underneath the text, you want to remove.
- Delete the “Shipping calculated at checkout” text.
- Replace it with whatever text you want.
- Click “Save”.
1 Like
@dawgminded
.cart__shipping {
display: none;
}
Add this in theme.scss
2 Likes
This doesn’t work. As you can see on my screenshot, I’ve replaced the text on the “Cart” tab, saved it, and the product page still shows the same text as before.
This is the only thing that works. Thanks.
theme.scss does not exist anymore what else can i do?