Hello Ravi,
Sorry for going back to this topic, please can you help modify your code to be excluded on specific pages like (homepage, invite-friends and ivr) pages
/* Add green dot to the corner of a users avatar if they are currently online */ add_filter( 'bp_core_avatar_class', function ( $class, $item_id, $object ) { if ( 'user' != $object ) { return $class; } $last_activity_time = bp_get_user_last_activity( $item_id ); // Maybe add 'is-online' class. if ( ! empty( $last_activity_time ) ) { // Calculate some times. $current_time = bp_core_current_time( true, 'timestamp' ); $last_activity = strtotime( $last_activity_time ); $still_online = strtotime( '+5 minutes', $last_activity ); // Has the user been active recently? if ( $current_time <= $still_online ) { $class .= ' is-online'; } } return $class; }, 10, 3 );
Thank you sir
Hi,
Please login to your Dashboard and visit Appearance->Customize-> “Additional Css”
You can add any custom css there.PS:- In future, Please open a new topic and feel free to reference old topics. That will help us serve you better.
Regards
Brajesh- This reply was modified 11 months, 1 week ago by Brajesh Singh.
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.
This topic is: not resolved