Viewing 4 replies - 1 through 4 (of 4 total)
  • star_echo

    (@star_echo)

    for me as well it’s not working. Just showing the actual text {forum_name} instead of the forum name.

    Any fix for this?

    I’m also having trouble with this issue.

    Hi,
    It works fine in the email body for me, but NOT in the email subject !
    Pascal.

    Just checked the code … it seems to only look for it in the body and not in the subject. Suggestion to add it also for the subject !

    I have changed the code for now myself (the bold part has been added):

    // Replace the title token if it exists in the custom title.
    $title = str_replace( $search, $replace, $subject );

    //Replace {forum_name}
    $forum_name = bbp_get_forum_title( $forum_id );
    $title = str_replace( ‘{forum_name}’, $forum_name, $title );

    return $title;

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Tag {forum_name}’ is closed to new replies.