Skip to:
Content

BuddyPress.org

Ticket #5714: 5714.02.patch

File 5714.02.patch, 1.4 KB (added by imath, 10 years ago)
  • src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php

    diff --git src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
    index a20c079..4e368db 100644
    if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) 
    99
    1010                <h4><?php printf( __( "Editing '%s' Profile Group", "buddypress" ), bp_get_the_profile_group_name() ); ?></h4>
    1111
    12                 <ul class="button-nav">
     12                <?php if ( bp_profile_has_multiple_group_tabs() ) : ?>
    1313
    14                         <?php bp_profile_group_tabs(); ?>
     14                        <ul class="button-nav">
    1515
    16                 </ul>
     16                                <?php bp_profile_group_tabs(); ?>
     17
     18                        </ul>
     19
     20                <?php endif ;?>
    1721
    1822                <div class="clear"></div>
    1923
  • src/bp-xprofile/bp-xprofile-template.php

    diff --git src/bp-xprofile/bp-xprofile-template.php src/bp-xprofile/bp-xprofile-template.php
    index 2466104..ec5cc8b 100644
    function bp_profile_field_data( $args = '' ) { 
    589589                return apply_filters( 'bp_get_profile_field_data', xprofile_get_field_data( $field, $user_id ) );
    590590        }
    591591
     592function bp_profile_has_multiple_group_tabs() {
     593        global $profile_template;
     594        return (bool) apply_filters( 'bp_profile_has_multiple_group_tabs', $profile_template->group_count > 1 );
     595}
     596
    592597function bp_profile_group_tabs() {
    593598        global $bp, $group_name;
    594599