louissss Posted June 4, 2013 Share Posted June 4, 2013 (edited) Hi how to sort manufacturer's names in a chosen order in prestashop 1.5 ? In previous version we put 01. 02. 03. at the begining of the names. But what now? thanks Edited June 10, 2013 by louissss (see edit history) Link to comment Share on other sites More sharing options...
Alex Simonchik BelVG Posted June 4, 2013 Share Posted June 4, 2013 Hi, I think override Manufacturer::getManufacturers is the best way. ... ORDER BY m.`name` ASC' #you can change it ... Regards Link to comment Share on other sites More sharing options...
louissss Posted June 4, 2013 Author Share Posted June 4, 2013 Thanks but I want an ordering that is not based on name or anything else, just something that I choose: this brand first, then this one second, then this other one third, etc.... Link to comment Share on other sites More sharing options...
Alex Simonchik BelVG Posted June 4, 2013 Share Posted June 4, 2013 (edited) For this task you can add field "position". You can view "Product" as example Edited June 4, 2013 by Alexander Simonchik (see edit history) Link to comment Share on other sites More sharing options...
louissss Posted June 6, 2013 Author Share Posted June 6, 2013 Thanks, indeed I could modify the database. But finally, I did the old solution renaming the brands: 01. brandnameone 02. brandnametwo 03. brandnamethree ... And I stripped the numbers in smarty in the tpl files where needed: {$manufacturer.name|regex_replace:"/^[0-9]+\.[ ]*/":""} instead of {$manufacturer.name} in several modules, to avoid displaying numbers in the front office. Link to comment Share on other sites More sharing options...
Alex Simonchik BelVG Posted June 6, 2013 Share Posted June 6, 2013 Creative way Link to comment Share on other sites More sharing options...
vekia Posted June 6, 2013 Share Posted June 6, 2013 so the problem is solved? :) Link to comment Share on other sites More sharing options...
louissss Posted June 10, 2013 Author Share Posted June 10, 2013 indeed! Link to comment Share on other sites More sharing options...
Recommended Posts