The order of what is displayed is done through the following if I am not missing something.
/buddypress-theme/member-themes/buddypress-member/profile/index.php
Just move the following”
<?php if ( function_exists('bp_wire_get_post_list') ) : ?>
<?php bp_wire_get_post_list( bp_current_user_id(), bp_word_or_name( __( "My Wire", 'buddypress' ), __( "%s's Wire", 'buddypress' ), true, false ), bp_word_or_name( __( "No one has posted to your wire yet.", 'buddypress' ), __( "No one has posted to %s's wire yet.", 'buddypress' ), true, false), bp_profile_wire_can_post() ) ?>
<?php endif; ?>
Put it closer to the top, maybe under:
<?php else : ?>
<?php bp_core_get_wp_profile() ?>
<?php endif; ?>
Trent
In fact, it would be nice to “widgetize” profile pages so you can move things around like facebook anyway. I created a ticket:
https://trac.buddypress.org/ticket/421
Trent
Is this going to be added in the final version of BP?