Introduction
By default, BuddyBoss displays the “Joined X Days Ago” label on member profiles and directory listings. There is no built-in option to remove it, but you can hide it by adding a small custom function to your active theme. This guide explains how you can remove the “Joined X Days Ago” label.
Custom Workaround
Before proceeding, make sure you have a complete site backup.
- In your WordPress admin dashboard, go to Appearance > Theme Editor.
- Under Select theme to edit, choose your active theme (preferably BuddyBoss Child Theme), then click Select.
- From the Theme Files list, click Theme Functions (functions.php).
- Paste the following code just before the closing PHP tag (?>):
// Remove the "Joined X Days Ago" label from members
function bb_remove_joined_date( $meta, $member, $is_loop ) {
unset( $meta['last_activity'] );
return $meta;
}
add_filter( 'bp_nouveau_get_member_meta', 'bb_remove_joined_date', 20, 3 );
- Click Update File to save your changes.
Troubleshooting and FAQs
Q: The “Joined X Days Ago” label is still visible, what should I check?
A: Ensure the code is added to the active theme’s functions.php and clear any caching plugins.
Q: Will this affect other member information?
A: No, this only removes the last activity label.
Q: Can I revert this change easily?
A: Yes, remove the code from functions.php and save.
Q: Who can I contact for further assistance?
A: Please review the BuddyBoss Support Policy or consult a developer.