Add qty avalable to feature collection on homepage Dawn Theme

Add qty avalable to feature collection on homepage Dawn Theme

MJGTrading
Excursionist
21 1 6

I'm trying to add the Inventory qty to the Featured product portion of the Homepage. I have tried a number of code I have found online and none seem to work.  Anybody have solution? I got invetory to show on the collection page, Product page but this one is stumping me

new arr.JPG

Replies 5 (5)
MJGTrading
Excursionist
21 1 6

Thanks for the code. I would like it to show up right below the price, For some reason today Im having a hard time figuring this out

MJGTrading
Excursionist
21 1 6

Our store is gated, but I can send you the code if that helps?

MJGTrading
Excursionist
21 1 6

just sent private message to you

Guleria
Shopify Partner
4212 816 1172

Hello @MJGTrading ,

 

You can use this code

{% assign qty = card_product.selected_or_first_available_variant.inventory_quantity %}

{% if qty > 0 %}
  <p>{{ qty }} available</p>
{% else %}
  <p>Out of stock</p>
{% endif %}

 

Regards
Guleria

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Guleria
Shopify Partner
4212 816 1172

Go to
Snippets -> card-product.liquid 

search for 

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

once found next to it add the code.

 

Regards

Guleria

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder