Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,005
- How-to & Troubleshooting
- 129,528
- Creating & Extending
- 25,790
- Requests & Feedback
- 9,496
- Third Party Plugins
- 9,783
- Showcase
- 3,316
- Ideas
- 1,397
- Miscellaneous
- 9,170
-
@boonebgorges I did this, and set the limit to 5 while testing. It adds a “load more” link at the bottom of that short list, but when I click it nothing happens, nothing more is shown.
What I did was to copy and put this into my bp-custom.php :
function my_custom_query_filter( $query_string ) {
$query_string .= ‘&per_page=35’;
return $query_string;
}
add_filter( ‘bp_dtheme_ajax_querystring’, ‘my_custom_query_filter’ );
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS