Friend Request Email Subject Filter
-
Hi, I want to change the subject of the email buddypress sends after a friend request.
Here’s what I have, it is not working:
function newSubject($initiator_name ) { $subject = bp_get_email_subject( array( 'text' => sprintf( __( 'New subject %s', 'buddypress' ), $initiator_name ) ) ); return $subject; } add_filter( 'friends_notification_new_request', 'newSubject', 10, 1);
What am I doing wrong? (reference)
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Friend Request Email Subject Filter’ is closed to new replies.