Details and Address Section on Customer account pages

Topic summary

A user noticed “Details” and “Addresses” sections on their Shopify customer account pages and questioned whether these are standard features or added by an app. They find the Addresses section redundant since address information already appears under Account Details, and they want to hide it.

Proposed Solutions:

  • Theme Settings: Check Online Store > Themes > Customize for built-in options to disable these sections on the customer account page.

  • CSS Method: Add CSS code to hide the sections without modifying theme files:

.customer-addresses, .customer-details {
    display: none !important;
}

This can be placed in theme.liquid (before </head>) or in base.css/theme.css.

  • Code Modification: For complete removal, edit the customers/account.liquid file directly.

The responder confirmed these sections are typically standard in Shopify themes, though some themes or apps may modify their appearance.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

I didn’t notice this prior but are the “Details” and “Addresses” sections standard on all pages of customer accounts or were they added by an app? I do not use tags currently for customers and the Addresses section seems redundant, as the address is also above under Account Details section. Would like to hide if possible.

1 Like

hi @HTX-Fluid-Power

"The ‘Details’ and ‘Addresses’ sections in customer accounts are typically standard in Shopify, but some themes or apps might modify them. If you’d like to hide them, here are a couple of options:

Check Theme Settings: Go to Online Store > Themes > Customize, navigate to the customer account page, and see if there’s an option to disable these sections.

Hide with CSS: You can add the following CSS in your theme’s theme.liquid file (before ) or in Assets > base.css / theme.css:

.customer-addresses, .customer-details {  
    display: none !important;  
}

This will hide both sections without modifying any theme code.

Modify Theme Code: If you want to remove them completely, you may need to edit customers/account.liquid. Let me know if you need guidance on that!