All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I added text "Free Shipping on all US orders" under my price on all my products but I just introduced a couple products I am now charging shipping for. I think I coded this in, but I can't find it anywhere in order to remove it. Can anyone advise? Example: https://shopmoonstarbaby.com/products/ocean-crib-sheet-sea-you-in-my-dreams
Thanks!
Solved! Go to the solution
This is an accepted solution.
Hello @alexanewman
Follow these steps:
1. Go to Online Store -> Theme -> Edit code
2. Open your base.css file and paste the following code at the bottom:
.product__tax.caption.rte {
display: none !important;
}
btw if you have a developer in your contact ask him to find the code and disable it.
I suggest a developer because disabling it from settings of code will be a clean solution instead of using a css solution.
If you need help with customization/code part you can contact me for services
You can find the email in the signature below.
Thanks
This is an accepted solution.
Hello @alexanewman
Follow these steps:
1. Go to Online Store -> Theme -> Edit code
2. Open your base.css file and paste the following code at the bottom:
.product__tax.caption.rte {
display: none !important;
}
btw if you have a developer in your contact ask him to find the code and disable it.
I suggest a developer because disabling it from settings of code will be a clean solution instead of using a css solution.
If you need help with customization/code part you can contact me for services
You can find the email in the signature below.
Thanks
that worked, thank you!