Hello,
Please how can I only disable buddypress notification without disabling the corresponding email notifications.
If I disable the notification component internal notifications and email notifications are disabled but I only want to disable internal notification and not email notifications
1. Completely remove notification tab
2. disable recording of internal notifications
3. still enable all email notificationsThanks
Hello Tosin,
Thank you for posting here. The BuddyPress plugin handles internal and email notifications separately. So, You can deactivate the notification module.
For e.q.
// Record internal notifications add_action( 'friends_friendship_requested', 'bp_friends_friendship_requested_notification', 10, 3 ); // Sends email notifications add_action( 'friends_friendship_requested', 'friends_notification_new_request', 10, 3 );
Please check and let me know what type of notifications you are dealing with.
Regards
RaviI want to disable the notification component from the settings but still enable email notifications for the following
ENABLE EMAIL NOTIFICATIONS FOR
1. Private messages
2. Activity – @mentions
3. Activity – A member replies to an update or comment you’ve postedPlease note that I still want users to have access to the email notification settings. I noticed that disabling the notification component would also remove the email notification settings for the 3 items stated above
You must be logged in to reply to this topic.