Plugin Author
Eric
(@emartin24)
Looking at your home page, you need to replace the code that generates the “Older Entries” with the WP-Paginate code:
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
If that’s not working, let me know…
Thread Starter
Corvus
(@daeeatsall)
So I changed the the index.php and the search.php with that block of code and still no go.
here is what I’m working with.
index.php
[Code moderated as per the Forum Rules. Please use the pastebin]
Thread Starter
Corvus
(@daeeatsall)
there is a ‘next posts’ link on your front page;
however this is wrapped in some’navigation’ divs.
it can therefore not come from your wp-paginate code in your index.php.
i could not generate a search result that had enough results to force a next page, so i could not check that.
for the trial, you might better set the number of posts per page (in settings – reading) to a lower number (maube just to two) that yould also generaste may more pages for the plugin to show.
did you check the plugin admin setting page for any options?
ps:
most of all, double check if you are editing the right files in the right folder.
Plugin Author
Eric
(@emartin24)
If your theme has a loop.php file, check that. If you are editing the correct file, you will no longer see the Older Entries link.
Thread Starter
Corvus
(@daeeatsall)
ha,
got it to work. I was working with the wrong index.php/search.php/archive.php.
thanks guys for taking your time out to help.