Dawn Theme - How to hide prices in each product page's "You May Also Like" collage


How do I get rid of the price?

1 Like

To hide the prices, you can add the following CSS code to your website’s stylesheet:

.template-product .related-products .product-card__price {
  display: none;
}

This code will hide the prices in the “You May Also Like” collage on all product pages.

Hi @Brenella ,

You can hide the price of the “You May Also Like” by following the instructions below

  1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
  2. Find the Asset folder, and open the base.css file
  3. Add the code below at the very end of the file
product-recommendations .card-information {
    display: none;
}
2 Likes

Hi @Brenella ,

Glad to support you today.

You can check out my suggestion below to get your concern resolved:

  1. Go to Edit code on Online Store:

  1. add my code above the tag on Theme.liquid:

Eg:

Hope you find my answer helpful!

Kind & Best regards,
GemPages Support Team.

Hi @made4Uo

I just copied your code and added it to the Custom CSS tab. It worked! Thanks!

2 Likes