bp_core_activated_user
and function messages_new_message
, now oneall bypasses the Buddypress registration process so users registering by login with social media do not get this welcome message. What is the suggested work around to get this working with the social login?do_action('bp_init');
to get it working with your action so to initialize in Buddypress tablesPlease sign in to your OneAll account to ask a new question or to contribute to the discussions.
Please click on the link below to connect to the forum with your OneAll account.
Answers
Indeed, we do not call this action.
However, we call
do_action ('user_register', $user_id);
, and our custom action, right after:do_action ('oa_social_login_action_after_user_insert', $user_data, $identity);
So, you could a add_action('oa_social_login_action_after_user_insert' ...) where you send the private message?
Another way would be for our plugin to hook into the Buddypress registration process. We're not familiar with this, however, if you have some action to call, we can find out where to place it in the plugin.
Hope this helps.