Skip to:
Content
Pages
Categories
Search
Top
Bottom

how to increase group list in group page?

  • @redblacked

    Participant

    default group page is show 20 group list.

    I want show 40 group list in group page.

Viewing 1 replies (of 1 total)
  • @slaffik

    Moderator

    Post this to bp-custom.php or functions.php of your theme.

    function redblacked_more_groups_per_page($args) {
        $args['per_page'] = 40;
    
        return $args;
    }
    
    add_filter( 'bp_after_has_groups_parse_args', 'redblacked_more_groups_per_page' );
Viewing 1 replies (of 1 total)
  • The topic ‘how to increase group list in group page?’ is closed to new replies.
Skip to toolbar