I want to remove the pricing for my products in the “featured collections” section of my homepage only…
I’m using theme Be Yours 6.5.2
I’ve tried various codes in different places and only 1 was semi-successful but it ended up removing prices from my entire website instead of ONLY the homepage.
Thanks in advance for your help!
URL: redkarpet.shop
Go to your Online store > Themes > Edit code > open theme.liquid file, add this code below after element
{% if template == 'index' %}
.card--product+.card-information .price {
display: none !important;
}
{% endif %}
Hi @redkarpet ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
{% if template.name == "index" %}
{% endif %}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
2 Likes
It worked!! thank you so much!