Displaying Stock Availability on _ProductBox.schtml

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
Hello NOP community!

We are using nopCommerce 3.90

We have a lot of products on the site...

How to display Product Stock Availability in _productBox.cshtml?

We would like the stock availability to be displayed on the ctagory pages, home page, etc...

Looking for "no source code" solution...

Thanks for your help in advance.
6 years ago
Hello zaf,

For this you have to slightly customize your code.

Take a look here.

https://www.nopcommerce.com/boards/t/41446/display-product-availability-in-_productboxcshtml.aspx
6 years ago
sk5202 wrote:
Hello zaf,

For this you have to slightly customize your code.

Take a look here.

https://www.nopcommerce.com/boards/t/41446/display-product-availability-in-_productboxcshtml.aspx


Hello!

Thank you very much for your answer... That post helped me, but what to do if I want to show all In Stock and Out Of stock?

Now it if a product is out of stock it shows "Out Of Stock". It shows nothing for those which are In Stock...

I want it to display both In Stock and Out of Stock.

@if (productQuantity < 1)
   {
      <span class="out-of-stock">Out of Stock</span>
   }


How to do it?

Thanks.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.