Need help with removing this section. Please!?

Topic summary

A user needed help removing automatically-generated warranty and exchange sections from product pages on their AI-built Shopify store. They couldn’t manually click to remove these elements.

Solution provided:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Add CSS code before the </head> tag to hide the unwanted sections:
p.text-troca { display: none !important; }
p.text-garantia { display: none !important; }

An alternative approach suggested accessing the theme customizer to remove the blocks directly from the product template settings.

Resolution: The CSS solution successfully resolved the issue, and the user marked it as the accepted answer.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

@Dj1324

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

1 Like