VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: bettondesign on April 09, 2013, 10:23:19 AM

Title: Sort by price high to low by default
Post by: bettondesign on April 09, 2013, 10:23:19 AM
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
Title: Re: Sort by price high to low by default
Post by: mediastreet on August 05, 2013, 12:01:02 PM
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!


Title: Re: Sort by price high to low by default
Post by: Tobes on April 23, 2014, 01:07:07 AM
after a lot of google searching and trawling through these forums at last I found your post.

Many Thanks