Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/09/2010 04:16:51 PM (17 years ago)
Author:
apeatling
Message:

Updating template based hooks.

File:
1 edited

Legend:

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

    r2270 r2284  
    33                <li class="feed"><a href="<?php bp_group_activity_feed_link() ?>" title="RSS Feed"><?php _e( 'RSS', 'buddypress' ) ?></a></li>
    44
    5                 <?php do_action('bp_activity_group_syndication_options') ?>
     5                <?php do_action( 'bp_group_activity_syndication_options' ) ?>
    66
    77                <li id="activity-filter-select" class="last">
     
    1313                                <option value="joined_group"><?php _e( 'Show New Group Memberships', 'buddypress' ) ?></option>
    1414
    15                                 <?php do_action( 'bp_activity_group_filter_options' ) ?>
     15                                <?php do_action( 'bp_group_activity_filter_options' ) ?>
    1616                        </select>
    1717                </li>
    1818        </ul>
    19 </div>
     19</div><!-- .item-list-tabs -->
     20
     21<?php do_action( 'bp_before_group_activity_post_form' ) ?>
    2022
    2123<?php if ( is_user_logged_in() && bp_group_is_member() ) : ?>
     
    2325<?php endif; ?>
    2426
     27<?php do_action( 'bp_after_group_activity_post_form' ) ?>
     28<?php do_action( 'bp_before_group_activity_content' ) ?>
     29
    2530<div class="activity single-group">
    26         <?php // 'activity/activity-loop.php' loaded here via AJAX. ?>
    27 </div>
     31        <?php
     32                // The loop will be loaded here via AJAX on page load to retain selected settings and not waste cycles.
     33                // If you're concerned about no-script functionality, uncomment the following line.
     34
     35                // locate_template( array( 'groups/groups-loop.php' ), true );
     36        ?>
     37</div><!-- .activity -->
     38
     39<?php do_action( 'bp_after_group_activity_content' ) ?>
Note: See TracChangeset for help on using the changeset viewer.