Is there an existing add-on that allows you to "Sort by Manufacturer" (etc) on the All Products page? If not, any ideas on the difficulty level of doing so? I'm not sure where to start...
Thanks!
Is there an existing add-on that allows you to "Sort by Manufacturer" (etc) on the All Products page? If not, any ideas on the difficulty level of doing so? I'm not sure where to start...
Thanks!
I thought I may have just figured it out, but ultimately had no luck. Here's what I did:
I inserted this code:
<option value="5" <?php echo ($disp_order == '5' ? 'selected="selected"' : ''); ?>><?php echo TEXT_INFO_SORT_BY_PRODUCTS_MANUFACTURERS; ?></option>
Around line 61 of this file: includes/templates/mytemplate/templates/tpl_modules_listing_display_order.php
------------
I also inserted this code:
define('TEXT_INFO_SORT_BY_PRODUCTS_MANUFACTURERS', 'Manufacturer');
Around line 1167 of this file: includes/languages/mytemplate/english.php
It shows up in the "sort by" drop-down, and the products are now grouped by manufacturer, but the manufacturers are not in alpha order. For example, I've got the following ordering happening:
Product 1 - Company C
Product 2 - Company C
Product 3 - Company C
Product 4 - Company A
Product 5 - Company A
Product 6 - Company B
etc...
I have also noticed that sorting by Model number does not bring the expected results either... they are in no particular order, it seems.
Any ideas?