#2190 closed defect (bug) (fixed)
BuddyPress: "Replies Created" pagination doesn't work under profile
Reported by: | r-a-y | Owned by: | |
---|---|---|---|
Milestone: | 2.3 | Priority: | normal |
Severity: | normal | Version: | 2.2 |
Component: | Extend - BuddyPress | Keywords: | has-patch |
Cc: |
Description
Steps to reproduce:
- Make sure a user has enough total replies to cause pagination.
- Navigate to /members/USERNAME/forums/replies/
- Attempt to click on the second page in the pagination links.
- Pagination link looks like this:
domain.com/members/page/2/
Which is invalid; link should look like this:
domain.com/members/USERNAME/forums/replies/page/2/
Tested on trunk.
Why is this happening?
Problem occurs during the construction of the pagination links in bbp_has_replies()
.
Attached patch changes how the $base
variable is constructed so a check is done in bbp_is_single_user()
as well and moves the is_page()
check lower in the stack.
This mirrors how bp_has_topics()
works.
Attachments (1)
Change History (4)
#3
@
10 months ago
This issue persists. I stumbled upon it today. Saw that a user reported about it a few years ago.
Can still be visible on BuddyPress forums and other websites too.
More infos on most recent issue https://bbpress.trac.wordpress.org/ticket/3355
(In [4741]) Fix issue with user profile replies pagination. Props r-a-y. Fixes #2190.