This modification will print the comment entry form on a separate page instead of at the bottom of the comments listing page. Copy the 2 PHP files in addons/separate-comment-mod/ to the talkback directory.
Change the "Comments display template" entry in admin panel > maintenance >
configuration to my-comments-display-tpl.php
.
my-comments-display-tpl.php
There is one change to the standard comments-display-tpl.php. The leave a comment link has been changed to:
<a href='" .TB_PATH. "comment-form.php?page={$_REQUEST['page']}'>{$lang['comdisplay6']}</a>.When you include comments.php in your page, it should look like this:
<?php $_REQUEST['page'] = $_SERVER['PHP_SELF']; $_REQUEST['article_url'] = $_SERVER['PHP_SELF']; include 'comments.php'; ?>Testing