Getting certain registration fields to appear in bbPress Author section

This topic contains 4 replies, has 3 voices, and was last updated by  Giri 6 years, 7 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #444

    Trex888
    Free User
    Post count: 101

    Hi there,

    I’m using the UsersWP plugin with bbPress and GeoDirectory. Wondering if it’s possible to have certain registration fields appear in the left side Author section of bbPress? So currently it shows member name, date that they registered and post count. I’d like to have info displayed in the section from one of my custom registration text fields. Image attached of the bbPress section I’m referring to.

    Thanks for any help with this,

    T

    #448

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    I asked to the developers to have a look at your question and let us know if it’s possible.

    Thanks

    #459

    Giri
    Expired Member
    Post count: 3155

    Hi Trex, This has nothing to do with UsersWP.

    You can most probably use bbPress hook to make it work.

    Like this.

    
    
    add_action('bbp_theme_after_reply_author_details', 'bbp_uwp_meta');
    function bbp_uwp_meta() {
    	$user_id = bbp_get_reply_author_id();
    	$value = uwp_get_usermeta($user_id, 'uwp_account_email', '');
    	echo $value;
    }

    Change email in the uwp_account_email with your custom field key.

    Thanks

    #463

    Trex888
    Free User
    Post count: 101

    Ok thanks Giri. Will give that a try.

    Best,

    T

    #464

    Giri
    Expired Member
    Post count: 3155

    You are welcome

Viewing 5 posts - 1 through 5 (of 5 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket