Hello
There were fake pending members.
I activated them. But the users didn’t show up in member page.
Do you know how to fix it?
I found the answer to other ueser in this website.
Do you know how to add the code?
—————————————-
If you want users to show in your site after they activate their account or you activated it using a plugin you have to add this piece of code to your sweetdate-child/functions.php and an user no longer needs to login in order for him to appear in the site.
add_action(‘bp_core_activated_user’, ‘kleo_add_member_activity’);
function kleo_add_member_activity($user_id)
{
add_user_meta( $user_id, ‘last_activity’, date(“Y-m-d H:i:s”));
}
1
2
3
4
5
add_action(‘bp_core_activated_user’, ‘kleo_add_member_activity’);
function kleo_add_member_activity($user_id)
{
add_user_meta( $user_id, ‘last_activity’, date(“Y-m-d H:i:s”));
}