Please Log in or Create an account to join the conversation.
Alternative is to use CBSubs SQL Actions and add the K2 groups using database queries.
Please Log in or Create an account to join the conversation.
Please see my previous reply. I've already provided a working example. Just change the Type to K2 and adjust the conditionals. Then set K2 action usages as needed.Could you help me with that cb auto configuration?
Depends on if you know how to write SQL or not. If not then no.Is that easier or better solution?
Please Log in or Create an account to join the conversation.
be applicable to use to get new registrations automatically added to the correct K2 user group.INSERT INTO `#__k2_users` ( `userID`, `userName`, `group` ) VALUES ( '[user_id]', '[USERNAME]', 3 )
ON DUPLICATE KEY UPDATE `userName` = '[USERNAME]', `group` = 3;
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.