pwizzard Posted March 9, 2015 Share Posted March 9, 2015 Hi I've just updated to 1.6.0.14 and now when I select any of the manufacturers page it displays: "No products for this manufacturer." This is definitely not the case and I'm certain this was not a issue before I upgraded. Is this something that has already been reported? Link to comment Share on other sites More sharing options...
pwizzard Posted March 9, 2015 Author Share Posted March 9, 2015 Hi I've rolled back my site to 1.6.0.11 and the manufacturer page is now working OK. It would seem there may be a problem with the upgrade. Link to comment Share on other sites More sharing options...
Jeroen_1987 Posted March 25, 2015 Share Posted March 25, 2015 I have the same problem. Is there an other way to solve this problem without rolling back? Link to comment Share on other sites More sharing options...
totallighting.sk Posted March 26, 2015 Share Posted March 26, 2015 I hade same problem, so I deleted my eshop, copy old version 156 and after that I made new update to 16014 and now it works!!! Link to comment Share on other sites More sharing options...
Jeroen_1987 Posted March 26, 2015 Share Posted March 26, 2015 Thanks for your reply. Unfortuanalty we can't delete our shop. We have already a lot of new orders. Is there another solution? Link to comment Share on other sites More sharing options...
tjtang Posted April 5, 2015 Share Posted April 5, 2015 Under Admin > Advanced Parameters > Performance > Optional Features > Combinations > Set to "Yes" I have no idea why this works. I upgraded from 1.6.0.9 to 1.6.0.14 and this is a new requirement. 1 Link to comment Share on other sites More sharing options...
totallighting.sk Posted April 10, 2015 Share Posted April 10, 2015 Thx, it works! Link to comment Share on other sites More sharing options...
karant Posted April 10, 2015 Share Posted April 10, 2015 Under Admin > Advanced Parameters > Performance > Optional Features > Combinations > Set to "Yes" I have no idea why this works. I upgraded from 1.6.0.9 to 1.6.0.14 and this is a new requirement. Hi I am having the same problem. https://www.prestashop.com/forums/topic/436257-upgraded-from-1609-to-16014-all-products-moved-to-1-manufacturer/ I tried the following Under Admin > Advanced Parameters > Performance > Optional Features > Combinations > Set to "Yes" It was already selected to YES. So I selected No, pressed saved. Still did not work. I switched it to Yes. Still did not work. Link to comment Share on other sites More sharing options...
Nihelan Posted April 11, 2015 Share Posted April 11, 2015 Is working for me IF "Advanced Parameters > Performance > Optional Features > Combinations" is enabled (set to YES) Link to comment Share on other sites More sharing options...
totallighting.sk Posted April 12, 2015 Share Posted April 12, 2015 Simple problem with simple solution!!! Link to comment Share on other sites More sharing options...
genotix Posted June 18, 2015 Share Posted June 18, 2015 If this would be a solution I would be fine with it. Unfortunately product combinations are already used and I can-not switch this to YES. 1 Link to comment Share on other sites More sharing options...
janicenisha Posted September 24, 2015 Share Posted September 24, 2015 Hi is there a solution to this besides the "Advanced Parameters > Performance > Optional Features > Combinations" is enabled (set to YES) My store is also set to YES by default. Any other way to get the Manufacturer page to display the products? Link to comment Share on other sites More sharing options...
dacct Posted January 23, 2016 Share Posted January 23, 2016 Same problem here and the solution proposed above is not fixing it for me neither. Anyone with another solution? Link to comment Share on other sites More sharing options...
Chrystall Posted March 4, 2016 Share Posted March 4, 2016 Same problem, "Advanced Parameters > Performance > Optional Features > Combinations" is enabled (set by default to YES) Hopefully someone can help with solving this. Link to comment Share on other sites More sharing options...
Mikhail21 Posted August 19, 2017 Share Posted August 19, 2017 Hi guys! Did you find solution? I have same problem. Link to comment Share on other sites More sharing options...
Ahmed AlShami Posted October 3, 2017 Share Posted October 3, 2017 I have the same issue!! How is it that 2 years and no one solved this issue!!! Link to comment Share on other sites More sharing options...
stdeykun Posted October 8, 2018 Share Posted October 8, 2018 (edited) I solved this problem (PS 1.6.1.7) in \controllers\front\ManufacturerController.php → function assignAll() (near end of file). There was IF statement with PS_DISPLAY_SUPPLIERS: if (Configuration::get('PS_DISPLAY_SUPPLIERS')) { $data = Manufacturer::getManufacturers(false, $this->context->language->id, true, false, false, false); $nbProducts = count($data); $this->n = abs((int)Tools::getValue('n', Configuration::get('PS_PRODUCTS_PER_PAGE'))); $this->p = abs((int)Tools::getValue('p', 1)); $data = Manufacturer::getManufacturers(true, $this->context->language->id, true, $this->p, $this->n, false); $this->pagination($nbProducts); foreach ($data as &$item) { $item['image'] = (!file_exists(_PS_MANU_IMG_DIR_.$item['id_manufacturer'].'-'.ImageType::getFormatedName('medium').'.jpg')) ? $this->context->language->iso_code.'-default' : $item['id_manufacturer']; } $this->context->smarty->assign(array( 'pages_nb' => ceil($nbProducts / (int)$this->n), 'nbManufacturers' => $nbProducts, 'mediumSize' => Image::getSize(ImageType::getFormatedName('medium')), 'manufacturers' => $data, 'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY') )); } else { $this->context->smarty->assign('nbManufacturers', 0); } I just added || 1==1 like this: if (Configuration::get('PS_DISPLAY_SUPPLIERS') || 1==1) { Edited October 8, 2018 by stdeykun (see edit history) 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