Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to add (\'per_page=35\') without messing up \”Load More\” link

@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’ );

Skip to toolbar