Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How do you put the wire box on top of the page

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

Skip to toolbar