Hi, I turned on comments on specific pages and it’s not showing up
I tried to disable all plugins to see if there is some incompatibility issue – still nothing
I found this
add_action('x_before_the_content_end','page_comment');
function page_comment() { if ( comments_open() ) : ?>
<?php echo $container_begin; ?>
<?php comments_template( '', true ); ?>
<?php echo $container_end; ?>
<?php endif; }
which works – but it looks horrible since it makes the comment section full-width
How do I fix that?