It shows when you click on the products.
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.
