comments


Author Message
Lu

Posted: 12/29/2009
Quote message 

Hi,
how can I move the "comments counter" from the footer of my posts to the header (next to the date, author...)?

any help?
thank you very much
Lu
 
alvaro*dzero

Posted: 1/15/2010
Quote message 

hi! i'm just trying to do the same think and I can't find how-to? I would like to give more importance to the COMMENTS and to put it near the title of the post but I can't... hope we find somebody that knows the solution...
 
calsnoboarder

Posted: 1/15/2010
Quote message 

You would have to edit your template to move the div for the post footer comments inside the div for post header...
 
StevieG

Posted: 1/15/2010
Quote message 

In your template you will find two places where text is built up in the output buffer ob_start(). One comes before the content and one after.

Simply move the code for the comments from the second block up to the first. It looks something like this

<?php if (!is_page() && !is_single()): ?><?php ob_start(); ?><img src="<?php bloginfo('template_url'); ?>/images/PostCommentsIcon.png" width="18" height="18" alt="" />
<?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?>