if i remove the below code from my theme’s single.php .. the duplicated content disappears .. however “statements” page is missing other content i put in there.
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( ‘template-parts/blog/style’, ‘default’ );
// Load Related Posts, Post Pagination, Author Bio, Shares, Tags etc.
codeless_single_blog_footer();
// If comments are open or we have at least one comment, load up the comment template.
if ( ( comments_open() || (int) get_comments_number() ) ) :
comments_template();
endif;
endwhile; // End of the loop.
?>