Hi InS0mN1aC,
Yes, probably the simplest way would be to create a custom template as described in this discussion, and add the comments_template()
function where you want to add the comments.
For example, you might replace the existing comments link…
</span>
<span class="meta-sep">|</span>
<?php endif; ?>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'posts-in-page' ), __( '1 Comment', 'posts-in-page' ), __( '% Comments', 'posts-in-page' ) ); ?></span>
<?php edit_post_link( __( 'Edit', 'posts-in-page' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
</div>
</div>
<!-- // Post Wrap End -->
… with comments_template()…
</span>
<span class="meta-sep">|</span>
<?php endif; ?>
<?php comments_template(); ?>
<?php edit_post_link( __( 'Edit', 'posts-in-page' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
</div>
</div>
<!-- // Post Wrap End -->