Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] displaying user roles in profile

  • @andrew55

    Participant

    I’m trying to get standard WP roles (subscriber, administrator, etc) to appear on the profile page next to the avatar, for each user and seen by everyone.

    I’ve been searching and experimenting, but haven’t found anything that works yet.

    Any suggestions for a function or maybe a snippet to put in user-details.php?

    Thanks for any help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • @shanebp

    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.php

    Then in that file put one of these snippets wherever you like:

    -show all roles for a user

    $user = new WP_User( bp_displayed_user_id() );
    
    if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
    	foreach ( $user->roles as $role )
    		echo $role;
    }

    – show just the first role

    $user = new WP_User( bp_displayed_user_id() );
    echo $user->roles[0];

    @andrew55

    Participant

    Thank you – works perfectly.

    Question: What determines the first role in this scenario?

    Thanks for any clarification.

    @danbp

    Participant

    @andrew55

    Participant

    This works great in member-header.php:

    But when I insert the same code in…

    \buddypress\bp-templates\bp-legacy\buddypress\groups\single\members.php,

    right after…

    <?php bp_group_member_link(); ?>

    …it won’t print the role out when viewing the group member list. Any suggestion on how to accomplish this?

    Thanks for any help.

    @andrew55

    Participant

    This worked for showing the roles in the group member list:

    https://buddypress.org/support/topic/display-users-role-on-the-members-loop-php-file/

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Resolved] displaying user roles in profile’ is closed to new replies.
Skip to toolbar