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.

Hi @Dj1324

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
p.text-troca {
    display: none !important;
}
p.text-garantia {
    display: none !important;
}

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

1 Like