ahmadsajid Posted May 8, 2013 Share Posted May 8, 2013 Hello everyone, i want to sort product list by my own way in manfacturer page, they way I sorted in catefory page from backend. lets clear the problem... i have category called dell there have 5 products, dell1, dell2, dell3, dell4, dell5 etc. to sort them by my own in category view i select "position inside category" as default order, and its working fine in when clickng the category in front end. but when click manufacturer in fron end there product lists either assending or dessinding not my own order way. can anyone tell me how can i achive custome order in manufacturer page also. Thanks in advance. Link to comment Share on other sites More sharing options...
FLuffy Posted July 25, 2013 Share Posted July 25, 2013 Hi Ahmadsajid, i have the same issue. Is there any way you managed to fix this problem? Thanks for any help!! Link to comment Share on other sites More sharing options...
fransjaeger Posted March 28, 2015 Share Posted March 28, 2015 Mee too - i would like to manage position on manufacturer product list Link to comment Share on other sites More sharing options...
fransjaeger Posted August 8, 2015 Share Posted August 8, 2015 Great news There is a module for this purpose now. http://addons.prestashop.com/en/front-office-features-prestashop-modules/20294-friendlyorderby-sort-products-in-manufacturer-list.html 1 Link to comment Share on other sites More sharing options...
Derres Posted May 10, 2016 Share Posted May 10, 2016 Same issue seems broke, in manufacurer and supplier it put the product order only in the alphabetical order Link to comment Share on other sites More sharing options...
vcopleutre Posted August 1, 2016 Share Posted August 1, 2016 (edited) Hi everyone, If you want to change this, you can modify (or override) ManufacturerController.php line 97 (in /controllers/front/ without override) Replace $this->orderBy ... $products = $this->manufacturer->getProducts($this->manufacturer->id, $this->context->language->id, (int)$this->p, (int)$this->n, $this->orderBy, $this->orderWay); ... by the order you want (examples : 'price', 'quantity', 'reference'). I guess you can change $this->orderway by 'desc' or 'asc' (didn't try yet) So you have something like : $products = $this->manufacturer->getProducts($this->manufacturer->id, $this->context->language->id, (int)$this->p, (int)$this->n, 'price' , $this->orderWay); Unfortunately you can't use a specific order since prestashop backoffice doesn't allow you to do it (on 1.6.1.4) Edited August 1, 2016 by vcopleutre (see edit history) Link to comment Share on other sites More sharing options...
manjula perera Posted October 29, 2019 Share Posted October 29, 2019 any one know how to add multiple product in one time in to the manufacturer Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now