Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/06/2010 09:32:33 AM (15 years ago)
Author:
apeatling
Message:

Updating activity permalink page design, added right padding to activity comments. Fixes #1547

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/groups/single/home.php

    r2197 r2265  
    2424                <?php do_action( 'template_notices' ) ?>
    2525
    26                 <?php if ( bp_is_group_admin_page() ) : ?>
     26                <?php if ( bp_is_group_admin_page() && bp_group_is_visible() ) : ?>
    2727                    <?php locate_template( array( 'groups/single/admin.php' ), true ) ?>
    2828
    29                 <?php elseif ( bp_is_group_members() ) : ?>
     29                <?php elseif ( bp_is_group_members() && bp_group_is_visible() ) : ?>
    3030                    <?php locate_template( array( 'groups/single/members.php' ), true ) ?>
    3131
    32                 <?php elseif ( bp_is_group_invites() ) : ?>
     32                <?php elseif ( bp_is_group_invites() && bp_group_is_visible() ) : ?>
    3333                    <?php locate_template( array( 'groups/single/send-invites.php' ), true ) ?>
     34
     35                <?php elseif ( bp_is_group_forum() && bp_group_is_visible() ) : ?>
     36                    <?php locate_template( array( 'groups/single/forum.php' ), true ) ?>
    3437
    3538                <?php elseif ( bp_is_group_membership_request() ) : ?>
    3639                    <?php locate_template( array( 'groups/single/request-membership.php' ), true ) ?>
    3740
    38                 <?php elseif ( bp_is_group_forum() ) : ?>
    39                     <?php locate_template( array( 'groups/single/forum.php' ), true ) ?>
     41                <?php elseif ( bp_group_is_visible() ) : ?>
     42                    <?php locate_template( array( 'groups/single/activity.php' ), true ) ?>
    4043
    4144                <?php else : ?>
    42                     <?php locate_template( array( 'groups/single/activity.php' ), true ) ?>
    43 
     45                    <p>This group is not visible.</p>
    4446                <?php endif; ?>
    4547
Note: See TracChangeset for help on using the changeset viewer.