How to remove [sitename] from email notification subject
-
Hi, i think there is no need for this because when you receive a message, it already says from [Sitename] so no need to repeat [site name] again in message subject. i have already removed it from Account Activation email. but i think removing it from all the messages will be ok.
here is the code i use to remove the one for account activation email:
`function fix_bp_activation_subject($subject) {
return __( “Activate Your Account”, ‘buddypress’ );
}
add_filter(‘bp_core_activation_signup_user_notification_subject’, ‘fix_bp_activation_subject’);`
- The topic ‘How to remove [sitename] from email notification subject’ is closed to new replies.