Archived topic
Remove shipping costs from mini cart
5 replies · Started by mkjj on July 21, 2022
Hi there,
I would like to remove shipping costs from the mini cart. Can I do this programmatically? Or would I have to use CSS for this? As far as I understand, the mini cart is generated from the Woocommerce cart. So, I would probably have to use CSS, wouldn't I?
Thank you!
Mike
Hi there,
where can i see this ?
OK, so that looks to be there from the Germanized Woocommerce plugin. Which you can edit the mini-cart-totals.php template:
https://github.com/vendidero/woocommerce-germanized/blob/master/templates/cart/mini-cart-totals.php
Or you can hide it with some CSS:
#wc-mini-cart .shipping-costs-cart-info {
display: none;
}
Exactly! Didn't know that this comes from the Germanized plugin. Thank you for pointing me in the right direction. I think, CSS will be fine here.
Thanks again for the best support on earth. :-)
Glad i could be of help :)