File Editor
Directories:
.. (Back)
forums
friends
groups
messages
notifications
profile
settings
Files:
activity.php
blogs.php
forums.php
friends.php
groups.php
home.php
member-header.php
messages.php
notifications.php
plugins.php
profile.php
settings.php
Create New File
Create
Edit File: groups.php
<?php /** * BuddyPress - Users Groups * * @package BuddyPress * @subpackage bp-legacy */ ?> <div class="x-item-list-tabs-subnav item-list-tabs no-ajax" id="subnav" role="navigation"> <ul> <?php if ( bp_is_my_profile() ) bp_get_options_nav(); ?> <?php if ( !bp_is_current_action( 'invites' ) ) : ?> <li id="groups-order-select" class="last filter"> <label for="groups-sort-by"><?php _e( 'Order By:', '__x__' ); ?></label> <select id="groups-sort-by"> <option value="active"><?php _e( 'Last Active', '__x__' ); ?></option> <option value="popular"><?php _e( 'Most Members', '__x__' ); ?></option> <option value="newest"><?php _e( 'Newly Created', '__x__' ); ?></option> <option value="alphabetical"><?php _e( 'Alphabetical', '__x__' ); ?></option> <?php do_action( 'bp_member_group_order_options' ); ?> </select> </li> <?php endif; ?> </ul> </div><!-- .item-list-tabs --> <?php switch ( bp_current_action() ) : // Home/My Groups case 'my-groups' : do_action( 'bp_before_member_groups_content' ); ?> <div class="groups mygroups"> <?php bp_get_template_part( 'groups/groups-loop' ); ?> </div> <?php do_action( 'bp_after_member_groups_content' ); break; // Group Invitations case 'invites' : bp_get_template_part( 'members/single/groups/invites' ); break; // Any other default : bp_get_template_part( 'members/single/plugins' ); break; endswitch;
Save Changes
Rename File
Rename