Skip to:
Content
Pages
Categories
Search
Top
Bottom

User Extra Information to bbpress user profile

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

  • Robin W
    Moderator

    @robin-w

    you can hook to various actions in bbpress eg

    add_action( 'show_user_profile', 'xxx', 50,2 )  ;
    //does the display/edit if viewing another's profile
    add_action( 'edit_user_profile', 'xxx', 50,2 )  ;
    //does the save if viewing own profile
    add_action( 'personal_options_update',         'xxx' );
    //does the save if viewing another's profile
    add_action( 'edit_user_profile_update',        'xxx' );

    but would need user registration to tell you what functions to put in the xxx


    getfree
    Participant

    @getfree

    Thanks Robin. I will pass this forward to our developer.


    Robin W
    Moderator

    @robin-w

    if they want to look at code that already does this, then they can download and crack open the code in

    bbp profile information

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