Introduction
BuddyBoss does not provide a built-in option to disable LookBook notifications, which are profile image gallery alerts for BuddyPress/BuddyBoss profiles. You can use a custom code snippet to remove these notifications. The focus keyword for this guide is Disable LookBook Notification.
Custom Workaround
- In your WordPress admin, go to BuddyBoss > Theme Options
- Under Custom Codes, toggle Enable CSS to On
- Paste the following code:
// Disable LookBook notifications
function disable_lookbook_notifications() {
remove_action( 'bp_activity_add_notification', 'bp_buddyboss_profile_add_notification' );
}
add_action( 'bp_init', 'disable_lookbook_notifications' );- Click Save Changes
Any custom code is considered “custom work.” Please review our Support Policy for more details.
Troubleshooting and FAQs
Q: The LookBook notifications are still visible, what should I check?
A: Make sure the code was pasted exactly as shown and that Enable CSS is turned on. Clear any site cache or CDN cache if necessary
Q: Will this affect other BuddyBoss notifications?
A: No. This code specifically removes LookBook notifications only
Q: Can I re-enable LookBook notifications later?
A: Yes. Remove this custom code to restore the default notification behavior
Q: Who can I contact for further assistance?
A: Submit a support ticket through your BuddyBoss account dashboard for personalized help