Price Range removal On collections Page ans Home page(Crave Theme)

Hello there,
Can someone help me removing “From Rs.xx” under the product in the home page and collection page. How can I display only the price of single variant.

When a featured product is displayed in the home page or products are displayed in the collection page the "from Rs.Lower limit of price " below the product is displayed. I just want to enable only single price. How can I do that?

Hi @MRJJEWELLERSB

In file "card-product.liquid" find for line

{% render 'price', product: card_product, price_class: '', show_compare_at_price: true %}

replace it with

{{ card_product.selected_or_first_available_variant.price | money }}
 
{% comment %} {% render 'price', product: card_product, price_class: '', show_compare_at_price: true %}{% endcomment %}

Please hit Like and mark it as solution if it helps

Hi Jasmeet

Thank you so much for your help.

1 Like