What's your biggest current challenge? Have your say in Community Polls along the right column.

remove price from homepage

remove price from homepage

boxingcentral
Explorer
118 0 22

How do I remove the price from home page?

 

Screenshot 2024-11-16 at 20.39.36.png

Replies 2 (2)

boxingcentral
Explorer
118 0 22

www.ezelworld.com
password: VIP

TechSprout
Shopify Partner
19 2 2

Hi, @boxingcentral.

 

Is this a custom theme? You would have to find the place in the code where this section is displaying {{ price }}, then make it conditional:

 

 

{% unless page.template == "index" %}
    <p>{{ product.price | money }}</p>
{% endunless %}

 

 

You would have to do something like this. It's harsh to tell you exactly where without looking into your store's code.

 

Hope that helps!

TechSprout - Commerce Solutions
If this post helped, please "Like" and "Mark as Solution" to help others with the same issue. Send me a DM if you have any other questions.