Reply To: Allowing email notification for new blog comments

Homepage Community Forums Epik Theme Support Allowing email notification for new blog comments Reply To: Allowing email notification for new blog comments

#9409
mponzi
Customer

    I received a suggestion from CopyBlogger support for removing the HTML tags. It worked fine. They suggested adding the following filter to the functions.php file:

    //* Remove comment form allowed tags
    add_filter( ‘comment_form_defaults’, ‘sp_remove_comment_form_allowed_tags’ );
    function sp_remove_comment_form_allowed_tags( $defaults ) {

    $defaults[‘comment_notes_after’] = ”;
    return $defaults;
    }