b22c Posted April 29, 2014 Share Posted April 29, 2014 Hi, i just create a new customer group, now i have the 3 prestashop have and one more i created. My question is that when i add a new product or category the 3 prestahop default groups have a checkbox but the new one dont, so this way, on a future product i will forgett to check my new group... Is there a way of my new group also become checked automatically like the others 3? Thanks Link to comment Share on other sites More sharing options...
vekia Posted April 29, 2014 Share Posted April 29, 2014 as far as i know - by default it's not possible. it's necessary to customize back office theme a little. what prestashop version you use? Link to comment Share on other sites More sharing options...
b22c Posted April 29, 2014 Author Share Posted April 29, 2014 Hi, i use prestashop 1.6.0.6 Link to comment Share on other sites More sharing options...
vekia Posted April 29, 2014 Share Posted April 29, 2014 in file: Controllerts/admin/AdminController.php you've got there code: $preselected = array(Configuration::get('PS_UNIDENTIFIED_GROUP'), Configuration::get('PS_GUEST_GROUP'), Configuration::get('PS_CUSTOMER_GROUP')); add there id of your customer group, then it will be preselected example: $preselected = array(4,8,9,Configuration::get('PS_UNIDENTIFIED_GROUP'), Configuration::get('PS_GUEST_GROUP'), Configuration::get('PS_CUSTOMER_GROUP')); Link to comment Share on other sites More sharing options...
b22c Posted April 30, 2014 Author Share Posted April 30, 2014 Hi Vekia, i cant find the code you say on the adress you gave... (Controllerts/admin/AdminController.php) Link to comment Share on other sites More sharing options...
b22c Posted May 5, 2014 Author Share Posted May 5, 2014 (edited) Vekia? Controllerts/admin/AdminController.php doesnt exist... Edited May 5, 2014 by b22c (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