Hi,> > Looking for help on the code I need to hide the price listing on collection page.> > Theme: grid> > Preview link: https://4ggnoj4tn4y2c58s-55146610849.shopifypreview.com
1 Like
@temeika ,
.collection-products p.product-list-item-price {
display: none;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >theme.css and paste this at the bottom of the file:
p.product-list-item-price {
display: none;
}
1 Like