• I am using free version and I can only get up to 8 members per page on the members page (using 4 column).

    Whats the maximum amount of avatars I can get per page for pro?
    Is there pro documentation available to view all the options before purchasing? The sales page has limited or general info and is not specific enough.

Viewing 1 replies (of 1 total)
  • Plugin Support john

    (@johnweru)

    Hey there,

    Thanks for reaching out to us.

    With respect to your question here, the plugin doesn’t limit the number of members per page. Perhaps you could be having some code within your theme doing this. Alternatively, please try adding the following code within your themes’ functions.php file to see if this code helps in altering the default number:

    function bp_members_per_page( $retval ) {
    $retval[‘per_page’] = 30;

    return $retval;
    }
    add_filter( ‘bp_after_has_members_parse_args’, ‘bp_members_per_page’ );

    I hope this gets to help.

    Kind Regards

Viewing 1 replies (of 1 total)
  • The topic ‘How many avatars fit on members page (pro version)’ is closed to new replies.