Skip to:
Content
Pages
Categories
Search
Top
Bottom

Remove [Site Name] from email subject line


  • Henry
    Member

    @henrywright-1

    Does anyone know if the [Site name] part of BuddyPress core email subject lines is filterable? The subject line always seems to start with the site name in square brackets. The site name already appears in the ‘from’ field so I don’t feel it’s needed in the subject line as well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • @henrywright-1,

    This is what i did to remove it from activation email, you can play with it to remove it from all

    function fix_bp_activation_subject($subject) {
    return __( "Activate Your Account",'buddypress ' );
    }
    add_filter( 'bp_core_activation_signup_user_notification_subject ','fix_bp_activation_subject');

    Naijaping


    Henry
    Member

    @henrywright-1

    Hi @naijaping I tried that filter and it doesn’t work. Does it still work for you?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove [Site Name] from email subject line’ is closed to new replies.
Skip to toolbar