Hi Carsten,
If you are comfortable with php, you can copy the member-header.php to your theme(buddypress/members/single) and modify as you please.Regards
BrajeshHi Carsten,
Please keep a copy as backup and then update it as you please.The file from your theme is selected and if it is not present, It is taken from the parent theme/template pack.
Regards
BrajeshHi Brajesh, one question, after I have been looking at the member-header.php content.
The different items, avatar, activity, actions, and meta all are in their own divs. This makes it possible to change the order of the divs, but since they all are in the same directory file, you cant really separate them, right?
What I want, first of all is to move my member’s header meta to after my div profile.
Question, can I just paste this, and which file should I paste it into to display under the profile fields in the profile?
Thanks in advance
Carsten
/** * Fires after the group header actions section. * * If you'd like to show specific profile fields here use: * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field * * @since 1.2.0 */ do_action( 'bp_profile_header_meta' ); ?> </div><!-- #item-meta --> </div><!-- #item-header-content --> <?php
Hi Carsten,
You should keep all the contents in the same file but you can use different divs/elements to enclose them.If you put them in separate files, you will need to include it in the members-header.php via get_template_part() or bp_get_template_part()
Regards
Brajesh
You must be logged in to reply to this topic.