Hey all, I am wondering how to edit my Shopify cart summary. I will not be including duties and taxes however it automatically says this. My Shopify cart summary is locked, and I cannot edit this. Any help would be greatly appreciated. Thanks!
This one can be handled in either way you see fit:
-
Go to Online Store → Themes → Three Dots → Edit Default Theme Content. Search for “duties and”. Edit text however you wish.
-
Theme Editor, Cart Page, Click on Cart section, scroll down to “custom css” and paste this code:
.cart__footer__small {
display: none;
}
And, because there are actually 2 places this is shown, if you’re talking about the cart drawer, paste this code in that section’s custom css:
.drawer__bottom__meta {
display: none;
}
Thanks! Learning more and more day by day ![]()

