Remove price from collection pages - Grid Theme

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,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
p.product-list-item-price {
display: none;
}
1 Like