Skip to:
Content
Pages
Categories
Search
Top
Bottom

Adding text intro to members page

  • @ukfish1

    Participant

    Hi

    I need to add a paragraph of text above the list of members on the /members/ page.

    Where would I go to do that please.

    Thannks

    Paul

Viewing 8 replies - 1 through 8 (of 8 total)
  • @thinlizzie

    Participant

    You can try this …

    
    function add_text_to_members_page() {
        echo 'This is my text intro etc.';
    }
    add_action( 'bp_before_directory_members', 'add_text_to_members_page' );
    
    

    @ukfish1

    Participant

    Many thanks.

    Where do I add that please?

    Paul

    @thinlizzie

    Participant

    Easiest is to use the Code Snippets plugin. Download it from the wordpress plugins site. I can’t link to it because this fu***** sh** website holds my comment for moderation when I link to the Official wordpress website. Go figure.

    @ukfish1

    Participant

    perfect, many thanks

    paul

    @ukfish1

    Participant

    Don’t suppose you can help with this post can you?

    Display on members page

    Thanks again

    Paul

    @thinlizzie

    Participant

    Re. Alphabetical, the code here will work if you are using bp Nouveau

    Change the selection option from “Last Active” to “Alphabetical” by default

    @thinlizzie

    Participant

    And re. number of members to show per page, try this …
    (You can change the “100” to anything you like.)

    
    add_filter( 'bp_after_has_members_parse_args', 'show_more_members' );
    
    function show_more_members( $args ) {
    	if ( bp_is_members_directory() ) {
    		$args['per_page'] = 100;
    	}
    	return $args;
    }
    
    

    @ukfish1

    Participant

    Thank you so much. All is working perfectly.

    Paul

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Adding text intro to members page’ is closed to new replies.
Skip to toolbar