Skip to:
Content
Pages
Categories
Search
Top
Bottom

skipping a line generates html characters

  • @itsmifred

    Participant

    Hi every one,

    skipping a line in a the forum generates html characters in email notifications.

    Visible by selecting the TEXT tab, these unwanted characters can be removed before sending, but users who are usually in VISUAL mode don’t think about it.

    I create a new topic but at least one other topic as very similar subject…

    Any idea ?

Viewing 1 replies (of 1 total)
  • @robin-w

    Moderator

    ok, so this should take them out

    add_filter( 'bbp_subscription_mail_message' , 'rew_strip_nbsp', 40 , 1 );
    add_filter( 'bbp_forum_subscription_mail_message' , 'rew_strip_nbsp', 40 , 1  );
    
    function rew_strip_nbsp ($message) {
    $message = str_replace (' ' , '', $message ) ;
    return ($message) ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar