VirtueMart Forum

VirtueMart 2 + 3 + 4 => Frontend Modules => Topic started by: iRescue.gr on July 18, 2014, 14:41:05 PM

Title: Module VirtueMart Products
Post by: iRescue.gr on July 18, 2014, 14:41:05 PM
Hello!
I need to sort the products at Module Virtuemart Products according to the order they have on Virtuemart.
Any help?
Title: Re: Module VirtueMart Products
Post by: GJC Web Design on July 18, 2014, 19:22:20 PM
in modules/mod_virtuemart_product/mod_virtuemart_product.php

~ line 60 after

$products = $productModel->getProductListing($Product_group, $max_items, $show_price, true, false,$filter_category, $category_id);

add


function cmp($a, $b)
{
  return ($a->ordering < $b->ordering) ? -1 : 1;
}
usort($products, "cmp");