Skip to:
Content

BuddyPress.org


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

Updating template based hooks.

File:
1 edited

Legend:

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

    r2270 r2284  
    33        <li class="feed"><a href="<?php bp_activities_member_rss_link() ?>" title="RSS Feed"><?php _e( 'RSS', 'buddypress' ) ?></a></li>
    44
    5         <?php do_action('bp_activity_member_syndication_options') ?>
     5        <?php do_action( 'bp_member_activity_syndication_options' ) ?>
    66
    77        <li id="activity-filter-select" class="last">
     
    1717                <option value="friendship_accepted,friendship_created"><?php _e( 'Show Friendship Connections', 'buddypress' ) ?></option>
    1818
    19                 <?php do_action( 'bp_activity_personal_filter_options' ) ?>
     19                <?php do_action( 'bp_member_activity_filter_options' ) ?>
    2020            </select>
    2121        </li>
    2222    </ul>
    23 </div>
     23</div><!-- .item-list-tabs -->
     24
     25<?php do_action( 'bp_before_member_activity_post_form' ) ?>
    2426
    2527<?php if ( is_user_logged_in() && bp_is_my_profile() ) : ?>
     
    2729<?php endif; ?>
    2830
     31<?php do_action( 'bp_after_member_activity_post_form' ) ?>
     32<?php do_action( 'bp_before_member_activity_content' ) ?>
     33
    2934<div class="activity">
    30     <?php // 'activity/activity-loop.php' loaded here via AJAX. ?>
    31 </div>
     35    <?php
     36        // The loop will be loaded here via AJAX on page load to retain selected settings and not waste cycles.
     37        // If you're concerned about no-script functionality, uncomment the following line.
    3238
    33 <?php do_action( 'bp_directory_members_content' ) ?>
     39        // locate_template( array( 'activity/activity-loop.php' ), true );
     40    ?>
     41</div><!-- .activity -->
     42
     43<?php do_action( 'bp_after_member_activity_content' ) ?>
Note: See TracChangeset for help on using the changeset viewer.