enzoklee
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Themes and Templates
In reply to: How can I remove comment display?Could you show me the single.php?
Maybe I can think about it for a while.Forum: Themes and Templates
In reply to: How can I remove comment display?Maybe it will help:
Edit single.php in your theme folder.
Delete all the functions about “comment”.
For me, it looks like<div id="comments"> <?php comments_template(); ?> </div><!--#comments--> <div class="pagination-single"> <span class="previous"><?php previous_post_link() ?></span> <span class="next"><?php next_post_link() ?></span> </div> </div><!--#content-->Maybe there’s some differences between our themes.
Just delete all of them.Notice:
Make your backup before you do it.Forum: Fixing WordPress
In reply to: Categories disappear when upgrading to 3.1Everything’s all right after a upgraded to wp 3.1.
Forum: Themes and Templates
In reply to: Carrington Theme Page Navi Problem🙂
Forum: Themes and Templates
In reply to: Carrington Theme Page Navi ProblemMake sure you have installed the WP-Pagenavi plugin.
Then edit the misc/nav-posts.php in your theme folder
Change the:<span class="previous"><?php previous_posts_link(__('« Previous', 'carrington-blog')) ?></span> <span class="next"><?php next_posts_link(__('Next »', 'carrington-blog')) ?></span>into:
<?php wp_pagenavi(); ?>like this:
<div class="pagination"> <?php wp_pagenavi(); ?> </div>Then you’ll get it.
My page is http://ekhere.com/
You can see the result there.
Viewing 5 replies - 1 through 5 (of 5 total)