Remove text on product page

Solved

Remove text on product page

jeffreym
Pathfinder
98 2 19

I want to remove 'shipping calculated at checkout' text from all 3 of my product pages.
Thankyou in advance!

URL: hygiadental.com
pw: melek

Screenshot 2024-08-26 at 2.05.34 PM.png

Accepted Solutions (2)

namphan
Shopify Partner
1329 164 199

This is an accepted solution.

Hi @jeffreym,

Please go to Actions > Edit code > Assets > section-main-product.css file and paste this at the bottom of the file:

.product__tax {
    display: none !important;
}
Coffee tips fuels my dedication.
Shopify Development Service
Need help with your store? [email protected]

View solution in original post

topnewyork
Globetrotter
633 114 134

This is an accepted solution.

Hi @jeffreym , kindly use the below instructions and code.

 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </body>

 

 

<style>
 .product__tax {
     display: none !important;
  }
</style>

 

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel

View solution in original post

Replies 4 (4)

niraj_patel
Shopify Partner
2378 514 511

Hello @jeffreym 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
 .product .product__tax {
     display: none !important;
  }
</style>

niraj_patel_0-1724645785979.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- [email protected]

namphan
Shopify Partner
1329 164 199

This is an accepted solution.

Hi @jeffreym,

Please go to Actions > Edit code > Assets > section-main-product.css file and paste this at the bottom of the file:

.product__tax {
    display: none !important;
}
Coffee tips fuels my dedication.
Shopify Development Service
Need help with your store? [email protected]
namphan
Shopify Partner
1329 164 199

Hi @jeffreym,

If you have any questions, you can contact me directly.
Nice to meet you 😊

Coffee tips fuels my dedication.
Shopify Development Service
Need help with your store? [email protected]

topnewyork
Globetrotter
633 114 134

This is an accepted solution.

Hi @jeffreym , kindly use the below instructions and code.

 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </body>

 

 

<style>
 .product__tax {
     display: none !important;
  }
</style>

 

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel