Skip to:
Content
Pages
Categories
Search
Top
Bottom

Where is Post article page PHP file save


  • bhartipanchal
    Participant

    @bhartipanchal

    I need to know one thing , right now i can not find Post Article PHP file , Actually I want to add one place holder in OPTION field, Experts can you please help me. Thanks

Viewing 2 replies - 1 through 2 (of 2 total)

  • Venutius
    Moderator

    @venutius

    BuddyPress does not include articles, you can post new activity updates, do you mean that or something else?


    Venutius
    Moderator

    @venutius

    It’s not pretty, but here’s a quick way of adding the user email to the admin groups directory:

    add_action( 'bp_groups_admin_manage_member_row', 'venutius_groups_admin_member_row', 10, 2 );
    
    function venutius_groups_admin_member_row( $user_id, $item ){
    		
        $user = get_userdata( $user_id );
    		
        echo '<span>'. $user->user_email .'</span>';
    }

    You’d put this in your functions.php or bp-custom.php

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar