Re: Problems in Spanish
I have found a partial solution …
EDIT bp-forum-filters.php and comment all filters
function bp_forums_filter_encode( $content ) {
//$content = htmlentities( $content, ENT_COMPAT, “UTF-8” );
//$content = str_replace( ‘&’, ‘/amp/’, $content );
return $content;
}
function bp_forums_filter_decode( $content ) {
//$content = str_replace( ‘/amp/’, ‘&’, $content );
//$content = @html_entity_decode( $content, ENT_COMPAT, “UTF-8” );
//$content = str_replace( ‘[‘, ‘<‘, $content );
//$content = str_replace( ‘]’, ‘>’, $content );
//$content = stripslashes( wp_filter_kses( $content ) );
return $content;
}