VirtueMart Forum

VirtueMart 2 + 3 + 4 => Frontend Modules => Topic started by: MKI-Miro on August 20, 2017, 11:28:49 AM

Title: display products in stock
Post by: MKI-Miro on August 20, 2017, 11:28:49 AM
Hi

Is it possible to display all products that are currently in stock?

I expected it in Virtuemart Products Module but it is not there.

Thanks

Edit: it should not hard to add someting like this to com_virtuemart/models/product.php in sortSearchListQuery function

case 'featured':
$where[] = 'p.`product_special`="1" ';
$orderBy = 'ORDER BY RAND()';
break;
case 'instck':
$where[] = 'p.`product_in_stock`="1" ';
$orderBy = 'ORDER BY RAND()';
break;


hmm ? :)
Title: Re: display products in stock
Post by: MKI-Miro on August 24, 2017, 14:27:03 PM
is there any chance that it will be included in next version?