DaveBarrack
Forum Replies Created
-
I’m running comicpress, I upload my images through that, but they’re not remotely hosted. I have 2.4.4 and the pinterest button isn’t showing up at all.
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] Pagination above and below the content.I’m using the ComicPress theme, what file do I edit to include this above the comments as well as below? I don’t see a loop file to edit.
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Install questionAh, great thanks.
Forum: Plugins
In reply to: [WP-Paginate] Does not workWhen the instructions say “Replace your existing previous_comments_link() and next_comments_link() code block with the following:”
Does that mean replace:
<div class="commentnav"> <div class="commentnav-right"><?php next_comments_link(__('Next Comments ↑','comicpress')) ?></div> <div class="commentnav-left"><?php previous_comments_link(__('↓ Previous Comments','comicpress')) ?></div>
So it looks like this:
<div class="commentnav"> <div class="commentnav-right"><?php if(function_exists('wp_paginate_comments')) { wp_paginate_comments(); } ?></div> <div class="commentnav-left"><?php if(function_exists('wp_paginate_comments')) { wp_paginate_comments(); } ?></div>
Or this:
<div class="commentnav"> <div class="commentnav-right"><?php if(function_exists('wp_paginate_comments')) { wp_paginate_comments(); } ?></div>
I’m sorry if this is a dumb question but I know enough about php to know that a single comma or period in the wrong place can break everything. Seeing EXACTLY what the finished product should look like is the only way us non-programmers can be sure we’re doing it right.