-
Author
-
May 21, 2017 at 06:23 #162175larandleParticipant
I hate feeling like I asked a question before. But for some reason, I can’t seem to figure out what happened. I have bp profile types on my site.
One of the things that I implemented was the profile type of every member to be located under the profile image in the activity page, where the inner side menu is. I returned today and I can’t find it. I feel like that was a hack that I asked Seventh Queen about, since it had something to do with the theme.
Can you please explain to me how to get the profile type of all members back under the profile image on the activity page….
I have fan, rapper, producer, hype man, ghostwriter
Thank you so much.
May 22, 2017 at 14:59 #162272LauraModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
May 23, 2017 at 19:02 #162477RaduModeratorHi,
Try this code
COPY CODEadd_action( 'bp_before_member_header_meta', 'kleo_bp_profile_member_type_label' ); function kleo_bp_profile_member_type_label() { $member_type = bp_get_member_type( bp_displayed_user_id() ); if ( empty( $member_type ) ) { return; } $member_type_object = bp_get_member_type_object( $member_type ); if($member_type_object){ $member_type_label = '<p class="kleo_bp_profile_member_type_label">' . esc_html( $member_type_object->labels['singular_name'] ) . '</p>'; echo apply_filters('kleo_bp_profile_member_type_label', $member_type_label); } }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.