VirtueMart Forum

VirtueMart 2 + 3 + 4 => Plugins: Payment, Shipment and others => Topic started by: rpynco on August 16, 2018, 07:16:38 AM

Title: show number of stack product in virtumart
Post by: rpynco on August 16, 2018, 07:16:38 AM
Hi
I use the (sj market) template for my website with joomla 3X
I want to know how to display the merchandise of virtumart in stock products on the home page.
for example:
30 item in stock
thanks
Title: Re: show number of stack product in virtumart
Post by: Jörgen on August 16, 2018, 07:33:18 AM
Probably something like this:

$stocklevel = $product->product_in_stock - $product->product_ordered;
echo $stocklevel . vmText::_ ('VM_ITEM_IN_STOCK'));


Otherwise, ask SJ market.

Jörgen @ Kreativ Fotografi
Title: Re: show number of stack product in virtumart
Post by: rpynco on August 16, 2018, 07:41:38 AM
Thank
Where should I add this code to my template?
Title: Re: show number of stack product in virtumart
Post by: Jörgen on August 16, 2018, 07:45:32 AM
QuoteI use the (sj market) template for my website with joomla 3X

You have a custom template, my guess would be in the templates/your_template/html/com_virtuemart/sublayouts/products.php.

regards

Jörgen @ Kreativ Fotografi
Title: Re: show number of stack product in virtumart
Post by: rpynco on August 16, 2018, 07:51:09 AM
In the description of the product virtumart displays the product inventory only in stuck and I want to show the stuok count. Will this problem be replaced by the replacement of this code?
Title: Re: show number of stack product in virtumart
Post by: Jörgen on August 16, 2018, 07:53:54 AM
My code shows (instock - ordered) amount, I can not know what your current template shows.

Jörgen @ Kreativ Fotografi
Title: Re: show number of stack product in virtumart
Post by: rpynco on August 16, 2018, 07:58:43 AM
my template show "in stock" too but i want to display the number of inventory for example "30 item in stock"
Did you understand؟
Title: Re: show number of stack product in virtumart
Post by: Jörgen on August 16, 2018, 09:16:42 AM
NO, did You read my answer ?

available = instock - ordered, what Do You want to see ????

Jörgen @ Kreativ Fotografi
Title: Re: show number of stack product in virtumart
Post by: Studio 42 on August 16, 2018, 17:44:03 PM
$product->product_in_stock - $product->product_ordered;
Display the stock that the customer can order