Alignment text coming with HTML tags
-
I am using bbpress for my website which is in development phase right now. One of my forum topics can be accessed here: https://drf.learnwise.in/forums/topic/retinitis-pigmentosa/. I am using visual editor by adding this code in my functions.php:
function bbp_enable_visual_editor( $args = array() ) {
$args[‘tinymce’] = true;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );All the formatting options except alignment are working fine. For alignment, it show the HTML tags as well after posting; as you can see in the forum.
Can someone let me know how to solve this?
Thanks,
Priyanka
- You must be logged in to reply to this topic.