Hello!
I need to sort the products at Module Virtuemart Products according to the order they have on Virtuemart.
Any help?
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");