How to Display Comments in a Seperate Page in BBlog Script
1. Create a file with filename “comments” (note: no extension) in the root directory, (where “item” and “section” files are located) that contains the following code:
‘; } ?>
2. create a file “comments.html” in your template folder, (e.g., “lines”, or “dmig”) that contains the following code:
{$post.title}
by {$post.author.nickname}, {$post.posttime|date_format:s2}
Comments
{getcomments assign=comments} {foreach from=$comments item=comment} {if $comment.deleted eq “true”} {else}
{/if} {foreachelse} {/foreach}
{include file=footer.html}
3. If you enabled the CLEANURL option, include the following line in config.php
and the following codes in .htaccess
4. Put a link to your comment page using the following code;
Thats it.
Filed in: 











{if $comment.type eq ‘trackback’} Trackback from {$comment.author} {$comment.posted|date_format:s1} {else} {$comment.author}
{$comment.posted|date_format:s1} {/if}
{$comment.body}