How to hide featured collection prices only on the home page - Dawn theme

I’ve just updated to Dawn & I’d like to remove prices on the home page featured collection, but only the home page. Is this possible?

The one solution that I’ve found removed on all collection pages:

.collection .card-information .price{ display: none !important; }

Add this css code at the bottom of
Online Store-> Theme-> Edit code-> Assets-> base.scss.liquid

.card-information .price {
	display: none;
}
1 Like

I can only find base.css & when I add the code, the price is removed from all collections, not just the home page. I’m only wanting to remove from the home page. Any thoughts?

Just to confirm, you want to feature different collections on your home page but only want to remove the price tags from the specific featured collection displayed called “Home Page.”

1 Like

Hello There,

  1. Go to Online Store->Theme->Edit code
  2. Layout->theme.liquid->paste bellow code in the bottom of the file
{% if template == 'index' %}

{% endif %}
1 Like

Thank you! This is exactly what I was looking for!

1 Like

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.