Problems with comments using Redoable theme in WP
Tags:
If you have problems in the comments using Redoable theme, you can try this trick(i hope that this post can help someone
).
Open the file single.php and modify the following lines at the end of the file from:
</div>
<div id=”rightcolumn”>
<?php get_sidebar(); ?>
</div>
<div class=”clear”></div>
</div> <!– .content –>
<?php comments_template(); ?>
<?php get_footer(); ?>
To:
</div>
<?php comments_template(); ?>
<div id=”rightcolumn”>
<?php get_sidebar(); ?>
</div>
<div class=”clear”></div>
</div> <!– .content –>
<?php get_footer(); ?>
I don’t know why, but invoking comments_template() after get_sidebar() the comments will not display right.
Se sei interessato a questo post, potresti anche provare a leggere:
- No related posts
06 Apr 2007 dzamir
[...] save the day. For you peeps using Dean J. Robinson’s Redoable wordpress theme, head on over here to solve your comments woes. My most sincere apologies to all my [...]