- Go to Online Store → Theme → Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
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:
</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.