Hi, I’m using the Blank - No Container | Header, Footer layout on my website. I found an article on this forum on how to add the comment section to the layout, but I have “Global Container” enabled for all the rows. How can I add the same container to the comment section?
I’m using the following code to add the comment section to the layout:
<?php
// =============================================================================
// VIEWS/INTEGRITY/TEMPLATE-BLANK-4.PHP (No Container | Header, Footer)
// -----------------------------------------------------------------------------
// A blank page for creating unique layouts.
// =============================================================================
?>
<?php get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
<?php x_get_view( 'global', '_comments-template' ); ?>
</article>
<?php endwhile; ?>
<?php get_footer(); ?>
Thanks in advance!
Dennis