June 9, 2015 at 14:44
#61673
Moderator
Hello Shakinaz, please add this to your functions.php
COPY CODE
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"));
}
This will count users once they register, now after you save it, go to Tools > Buddypress and check all options. This will recount your users and their activity etc…
Hello Abracadabra, yes the way i added it will show it also in members page, with your code, there is no need to change nothing, just place
COPY CODE
<?php do_action( 'bp_directory_members_item' ); ?>
In members.php of group files and will show your code, because you use the same action. Just add it like this
COPY CODE
<?php do_action('bp_directory_members_item', 'bphelp_dpioml'); ?>
Let me know if it works 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution