• Resolved jonesuk

    (@jonesuk)


    How can we set the maximum number of profiles to return?

    If we want only 4 members or 3 members to be shown instead of all members in the directory?

    Also how can we change the display so that members are shown horizontally instead of vertically?

    • This topic was modified 5 years, 8 months ago by jonesuk.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Andrea Tarantini

    (@dontdream)

    Hello jonesuk,

    You can add this code to your bp-custom.php file:

    add_filter ('bps_search_results', 'limit_results');
    function limit_results ($results)
    {
    	// returns up to four results, with no specific order
    	return array_slice ($results, 0, 4);
    }

    The search results are then sorted and displayed by BuddyPress in the standard members directory so, to change the display of the search results, you need to change the display of the BuddyPress directory.

    Thread Starter jonesuk

    (@jonesuk)

    Great thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘set results limit and display’ is closed to new replies.