How to position profile fields within members directory
-
I’m using the following to add profile information to the members directory, and its working, but i cant seem to re-position where the text appears (at the moment its under the ‘add friend’ button).
function add_pf_to_members_page() {
$field_content = bp_get_member_profile_data( ‘field=field name here’ );
if( $field_content != false )
echo ” ” . $field_content;
}
add_action( ‘bp_directory_members_item’, ‘add_pf_to_members_page’ );I’d ideally like it moved to the middle of the page – http://tyfy.co/members/, but any advice on how to move the text would be great, i’ve tried CSS but there is no div information.
Thanks in advance for any help.
- You must be logged in to reply to this topic.