Support MB Frontend Submission How to autopublish post entered thru Frontend Submission with all the fields? Reply To: How to autopublish post entered thru Frontend Submission with all the fields?

#10079
Anh TranAnh Tran
Keymaster

You should add that filter to your functions.php file, something like this:

add_filter( 'the_content', function( $content ) {
    if ( is_single() ) {
        $content .= do_shortcode( '[text-blocks id="showfields"]' );
    }
    return $content;
} );