This are in Groups under Documents
This is a general wordpress feature, to change the number viewed in the list, click on Screen Options at the top of the page, from there you can set the number displayed
Hi Ulrich-
It sounds like you’re talking about BuddyPress Docs, not BP. If so, there’s a filter, and you could use it something like this:
add_filter( 'bp_after_bp_docs_has_docs_parse_args', function ( $args ) {
$args['posts_per_page'] = 100;
return $args;
} );
Thanks for the information, I posted the question in the BuddyPress forum, so it can be marked as solved.
I have already add the filter to the function.php from the theme, but I didn’t change anything