@kyla123
8 years, 1 month ago
I think it’s getting “crowded out” by the activity/other content below it – if that makes sense…. Like it’s getting covered up or pushed out of the way somehow
8 years, 2 months ago
I have BuddyPress Version 2.6.2
thanks.
resolved.
i downloaded the snippets plugin and found this code to add:
/* remove "not recently active" */ function bpfr_core_get_last_activity( $last_activity_date, $string ) { if ( empty( $last_activity_date ) ) // we do nothing $last_active = ''; else $last_active = sprintf( $string, bp_core_time_since( $last_activity_date ) ); } add_filter( 'bp_core_get_last_activity', 'bpfr_core_get_last_activity' );
/* remove whole recently active filter */ function bpfr_remove_last_activity_filter() { remove_filter( 'bp_core_get_last_activity', $last_active, $last_activity_date, $string ); } add_filter( 'bp_core_get_last_activity', 'bpfr_remove_last_activity_filter' );
activated this code/snippet^ and that seems to have worked, even when refreshing the page.
Actually, it didn’t “fix” it……….. It shows when the page is being refreshed. ????????? I want it gone.
I fixed it. Opened the editor on my theme (style.css) and entered this code at the very bottom: #buddypress span.activity { display: none; }