Navigation not working only for Page 1
-
My navigation (page 1, 2, 3, etc.) works fine when I go from page 1 to page 2. But when I try to hit the “previous” or “page 1” link, it redirects me to the same page I’m on which is Page 2. I need it so that when I click on the “page 1” link, it leads me back to the main page.
-
It’s broken and no solution so far…
What theme are you using and what version of bbPress?
Tested, not working right with Kakumei, all plugins disabled, v1.01.
Same here. Kakumei v. 1.01
Do you have permalinks on?
It works here, and it works for me on my site so I’m trying to narrow down the wacky.
Yes, I have permalinks on.
Yes, I have.
Has anyone figured out a fix for this yet?
@crackpixels, did you post a link to a forum topic where this can been seen broken? It’s working fine for me with permalinks and 1.0.1, but maybe I’m not sure what I should be looking for.
This is the link. The navigation works from page 1 to 2 but not back to page 1.
That is navigation for the front page, not topics.
My topics navigation works fine with permalinks but I also have the same problem with permalinks on the latest discussion (like on endrant.org).
I use Plugin: “Topics Per Page” .. I Added the replace in htaccess with no luck.
Using bbpress 1.0.1
Is there any other plugin or built in function that do the same trick for latest discussions?
Seems bbpress.org works with permalink / latest discussion pagination.
How do their code look like?
Crackpixels – I had the same issue… but _ck_ just released a patch which resolved the problem for me!
https://bbpress.org/plugins/topic/front-page-topics/changelog/
Same problem. Upgrade plugin, same problem. Please help!
If this appears in your
front-page.php
, then you have bbPress 1.0.x and you have a bug<?php bb_latest_topics_pages( array( 'before' => '<div class="nav">', 'after' => '</div>' ) ); ?>
The same bug was in some rare cases of 0.9
and I programmed around it in
topics-per-page
I doubt it will work properly on 1.0 but you can try installing the plugin, remove the above line and replace it with
<div class="nav"><?php front_page_pages(); ?></div>
Work for me, thank yuo ck!
- You must be logged in to reply to this topic.