Removing prices from 'you may also like' section - debut theme

Hi,

I need help with removing prices from ‘you may also like’ section - debut theme.

Thanks in advance.

Hi @juzamon

Can you please share your Store URL?

@juzamon
Use this css

#shopify-section-product-recommendations .price.price--listing {
  display: none !important;
}
1 Like

I may not share as this is for a client, the shop is not public yet… but this is the normal debut theme and the section is on the bottom of every product page.

What I need to hide is only the price in this section, everything else remains untouched.

I managed to hide prices on category pages with a code I found on forums, but I cannot find a solution for this.

Thank you for the code, where do I put this please?

@juzamon

You can add this code in theme.scss.liquid file

1 Like

Thank you very much!