Hi
Does anyone know how to display products sorted by price high to low by default. The default is currently low to high.
Joomla 2.5.9
Virtuemart 2.0.20b
Hi there,
Conquered this issue the other day. You'd need to do a hack to a core VM file.
administrator/components/com_virtuemart/models/product.php
Around line 146 you should have:
$filter_order_Dir = strtoupper (JRequest::getWord ('order', 'ASC'));
Change it to:
$filter_order_Dir = strtoupper (JRequest::getWord ('order', 'DESC'));
Hope that helps!
after a lot of google searching and trawling through these forums at last I found your post.
Many Thanks