A user reports that their CSS code to hide the shipping location map on Shopify’s order summary page no longer works after a checkout update. The previous solution involved adding custom CSS to the “Additional Scripts” section in checkout settings.
Key Issue:
Old CSS code (display: none for .map.default-background) is now ineffective
Traditional customization methods have been deprecated:
Settings > Checkout > Additional Scripts
checkout.liquid file
Current Status:
The discussion remains unresolved. Another user requests guidance on alternative methods to hide the map given the deprecated customization options. A community member offers to help if provided with the store link, but no solution has been shared yet.
Summarized with AI on November 2.
AI used: claude-sonnet-4-5-20250929.
I used to be able to hide the shipping location map on order summary page by pasting this code into the additional scripts section in checkout settings.
.map.default-background {
display: none;
}