Is there a way to control enabling/disabling comments?
I find it quite depressing to see 0 comments in every post
------------------
http://www.fazaza.com
Well, boo-hoo. Go do something about itshovals wrote:Is there a way to control enabling/disabling comments?
I find it quite depressing to see 0 comments in every post
Code: Select all
{if $entry.has_comments}
{if $use_popups}
| <a href="{$entry.link_popup_comments}" onclick="window.open(this.href, 'comments', 'width=480,height=480,scrollbars=yes'); return false;">{if $entry.comments == 0}{$CONST.ADD_COMMENT}{else}{$entry.label_comments} ({$entry.comments}){/if}</a>
{else}
| <a href="{$entry.link}#comments">{if $entry.comments == 0}{$CONST.ADD_COMMENT}{else}{$entry.label_comments} ({$entry.comments}){/if}</a>
{/if}
{/if}