VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: thefbi on May 07, 2020, 10:47:34 AM

Title: Message of stock alert in the product view
Post by: thefbi on May 07, 2020, 10:47:34 AM
Hello,
is it a possibility to have the message say the product quantity is updated due to stock but in the product view.

Actually, if i have 5 products in stock and want to order 6, when i add to cart, my cart is updated and i see 5 products in. My cart is always on top of site, so the client can see it without redirect, when in the product details view.
When i go in the cart, if i want to force the number to 6, i have the message from COM_VIRTUEMART_CART_PRODUCT_OUT_OF_QUANTITY.

I want to have this message in the product detail view, so like this the user can know why he cant add 6 products if i have only 5 in sitock.

I use VM 3.6.10 10211
Joomla 3.9.18
Template custom with Themler

Title: Re: Message of stock alert in the product view
Post by: jenkinhill on May 07, 2020, 10:57:24 AM
Product stock can be displayed on the Product details page using   <?php echo $this->product->product_in_stock ?>   That may work for you.
Title: Re: Message of stock alert in the product view
Post by: thefbi on May 07, 2020, 11:16:05 AM
Hello, yes it work.

I will use this to show the stock on the products. Thank you.