@jluisrioja
Active 3 years, 11 months ago
-
Varun Dubey replied to the topic subscribers not showing in the list in the forum How-to & Troubleshooting 4 years, 6 months ago
@jluisrioja
You can use the following code inside the child theme, it will add a timestamp for all users
remove code once all member starts displaying in your member list.function buddypress_add_last_activity() {
[Read more]
$members = get_users( 'fields=ID' );
foreach ( $members as $user_id ) {
bp_update_user_last_activity( $user_id,…