Shin_P Posted November 26, 2010 Share Posted November 26, 2010 Hello there.I have this issue with PS now:after I log in, the categories block is EMPTY!I tried disable the dynamic stuff, uninstall the my account block.. but nothing!Please help ! Link to comment Share on other sites More sharing options...
rocky Posted November 27, 2010 Share Posted November 27, 2010 Edit each category and check the group permissions. Make sure that "Default" (and the customer group of the currently-logged-in customer) are ticked. Link to comment Share on other sites More sharing options...
Shin_P Posted November 27, 2010 Author Share Posted November 27, 2010 Thank you Rocky, you were right!I had to manually give permission to my newly created group on each category & subcategories.. .. so slow!It will be nice to have a recursive option for all the subcats! Link to comment Share on other sites More sharing options...
rocky Posted November 27, 2010 Share Posted November 27, 2010 The only faster way I can think of is to run an SQL query like this using phpMyAdmin: DELETE FROM `ps_category_group` WHERE `id_group` = 1; INSERT INTO `ps_category_group` SELECT `id_category`, 1 FROM `ps_category`; Change ps_ to your database prefix and 1 to the ID of the group you want all categories to be in. This will delete all the existing categories from group 1, then put all categories in group 1.Remember to make a backup of your ps_category_group table first in case anything goes wrong. 1 Link to comment Share on other sites More sharing options...
mechell.baradillo Posted March 8, 2013 Share Posted March 8, 2013 (edited) Thanks rocky. I was looking for this solution for ages. This solution works. Edited March 9, 2013 by mechell.baradillo (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts