VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Coding Central => Topic started by: ExSpirit on June 15, 2015, 08:15:18 AM

Title: Change product order in vm->category->default.php
Post by: ExSpirit on June 15, 2015, 08:15:18 AM
I would like to change the order of products in category->default.php, just before foreach ( $this->products as $product ). I need o list products first all products which are in one category, then some other and on the end all other products. Also all those products should have "second ordering condition", which is availability date. So items should be listed first if contains category X and those items are sorted by availability date, next are shown items from category Y and those items are sorted by availability date, and on the end all other items are shown and those items are sorted by availability date. How could I do that (arrange the array in correct order)?
Title: Re: Change product order in vm->category->default.php
Post by: lindapowers on June 15, 2015, 18:00:54 PM
I find this quite interesting, sorry I cant help you but yes in many cases the use of 2 conditions is necessary.

We for example would like to order by in stock - out of stock and per sales, something currently not possible.

This guys could help you:

https://forum.virtuemart.net/index.php?action=profile;u=47167
https://forum.virtuemart.net/index.php?action=profile;u=36504
Title: Re: Change product order in vm->category->default.php
Post by: Milbo on June 23, 2015, 09:48:55 AM
The new ordering for product name is already "ordering, product_name". Your case brings up the idea to allow to enter your own SQL value for "ORDER BY"
Title: Re: Change product order in vm->category->default.php
Post by: ExSpirit on June 24, 2015, 08:57:47 AM
Is PHP sorting is to complicated, maybe it would be easier to modify SQL query? Which file gets all product data in object?