:( I must be doing something wrong........I'm certain that I followed your instructions but have a problem
I first modified my .htaccess file (in my WP blog root folder) to add your line, substituting my actual pathname:
RewriteRule ^page/([0-9]+)/?$ /Forum/?page=$1 [L,QSA]
Next I deactivated and upgraded the plugin to version 0.0.4 and reactivated it
Then I put this line in my front-page.php template file:
<div class="nav"><?php front_page_pages(); ?></div>
However, if I put it after the closing row (</tr>) and before the endforeach statement, it displays nothing but rows of page numbers, like this:
1 2 Next>>
1 2 Next>>
1 2 Next>> and so on for the number of rows I specified in topics-per-page.php
If I make a new row for it, like this:
<tr>
<td colspan="4"><div class="nav"><?php front_page_pages(); ?></div></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
then it inserts the page numbers after each topic row, like this:
Topic Posts Last Poster Freshness
Post #1 3 John Doe 1 day ago
1 2 Next>>
Post Two 1 Suzy Q 2 days ago
1 2 Next>>
Post 3 5 Brad Pitt 2 days ago
1 2 Next>>
Any ideas?
