Does anyone know how to remove estimated shipping ...
# suitecommerce
w
Does anyone know how to remove estimated shipping cost from a cart page? It's within the "order summary" section of the cart. (See screenshot)
s
@Will there is a checkbox named "Show Shipping Estimator" under the website record. Just uncheck it.
w
@Sohan Kumar Dash thanks! where the heck is that?! lol
a
@Will Commerce > Website List > Edit your Site > Appearance > Under Shopping Cart
s
Go to Commerce Menu -> Websites -> Website List -> Edit your website.
Under the "Setup" tab you will see this checkbox.
See the highlighted text with a checkbox
w
@Sohan Kumar Dash i actually don't have that check box.... 😞
a
check the appearance tab
w
ah.. i found it
but it is already not checked...
a
🤔 must be added custom then...
w
i dont think it is. maybe its a bug with our instance, ill reach out to netsuite. thank you so much!
is there any way to fix this, then, @Steve Goldberg?
s
Sorry, I deleted my message because it wasn’t clear. That button works to show the estimator form, it is not wired in for whether to show estimated shipping if it already exists.
As for ‘fixing it’, it is working as intended 😉
w
hahaha well is there any button to remove estimated shipping?> 😂
s
Well, each user can click that little (X) button next to the zip code to remove it
On a configuration level, I don’t think there’s anything you can do. It’s designed to always show. You would have to tinker with the code to hide it.
w
i need estimated shipping to not be shown there - because our shipping is a really complicated beast.. and we take extra steps to give customers the lowest shipping.. but that wont be reflected until they get further down the cart
ugh that's really frustrating 😞
s
I forget — do you have development skills? It’s removable in the theme or SCA source code
w
ish. enough to remove something (probably)
s
OK, well in the theme is Cart/cart_summary.tpl. You basically want to comment out / delete anything that conditionally operates on
{{#if showEstimate}}
.
w
oh thats simple enough
s
Similarly, in the SCA source code you could just edit Cart.Summary.View so that showEstimate always returns false
w
is "show estimate" baked into the summary box? if not, i should be able to hide it with HTML in the same way i hide things like facets, right? would that be an option?
s
not sure what you mean
If you mean just adding some CSS via the site management tools, then yes
That’s also an option
In fact, if you’re not comfortable doing code edits then that would be the simplest way for you
w
like this; .facets-facet-browse-category {display: none;}
s
Yah, so just inspect the elements and find the class names and do something like that
w
groovy. ill take a look. thank you so much @Steve Goldberg!
👍🏻 1
daaaaaaaaangit. the estimator still is involving itself in the total.
and when i remove the cart summary it removes everything.
fiddle sticks lol
s
Ah, yeah, it will still do the calculation and add it to the sub-total won't it 😅
I've asked some members of the team whether it is possible to deactivate any shipping estimation; will let you know if I get an answer
w
thanks dude!