Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I'm guessing maybe a tag or call changed but really don't know.

Here is what my Activity index looks like. Only the header, sidebar, and footer shows.

<?php get_header() ?>

<div id="content" class="grid_8">

    <?php if ( !is_user_logged_in() ) : ?>
        <h2 class="latest-activity"><?php _e( 'Site Activity', 'buddypress' ) ?></h2>
    <?php endif; ?>

    <?php do_action( 'bp_before_directory_activity_content' ) ?>

    <?php if ( is_user_logged_in() ) : ?>
        <?php locate_template( array( 'activity/post-form.php'), true ) ?>
    <?php endif; ?>

    <?php do_action( 'template_notices' ) ?>

    <div class="item-list-tabs activity-type-tabs">
        <ul>
            <?php do_action( 'bp_before_activity_type_tab_all' ) ?>

            <li class="selected" id="activity-all"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/' ?>" title="<?php _e( 'The public activity for everyone on this site.', 'buddypress' ) ?>"><?php printf( __( 'All Members (%s)', 'buddypress' ), bp_get_total_site_member_count() ) ?></a></li>

            <?php if ( is_user_logged_in() ) : ?>

                <?php do_action( 'bp_before_activity_type_tab_friends' ) ?>

                <?php if ( function_exists( 'bp_get_total_friend_count' ) ) : ?>
                    <?php if ( bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>
                        <li id="activity-friends"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/' . BP_FRIENDS_SLUG . '/' ?>" title="<?php _e( 'The activity of my friends only.', 'buddypress' ) ?>"><?php printf( __( 'My Friends (%s)', 'buddypress' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ) ?></a></li>
                    <?php endif; ?>
                <?php endif; ?>

                <?php do_action( 'bp_before_activity_type_tab_groups' ) ?>

                <?php if ( function_exists( 'bp_get_total_group_count_for_user' ) ) : ?>
                    <?php if ( bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) : ?>
                        <li id="activity-groups"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/' . BP_GROUPS_SLUG . '/' ?>" title="<?php _e( 'The activity of groups I am a member of.', 'buddypress' ) ?>"><?php printf( __( 'My Groups (%s)', 'buddypress' ), bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) ?></a></li>
                    <?php endif; ?>
                <?php endif; ?>

                <?php do_action( 'bp_before_activity_type_tab_favorites' ) ?>

                <?php if ( bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) ) : ?>
                    <li id="activity-favorites"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/favorites/' ?>" title="<?php _e( "The activity I've marked as a favorite.", 'buddypress' ) ?>"><?php printf( __( 'My Favorites (<span>%s</span>)', 'buddypress' ), bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) ) ?></a></li>
                <?php endif; ?>

                <?php do_action( 'bp_before_activity_type_tab_mentions' ) ?>

                <li id="activity-mentions"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/mentions/' ?>" title="<?php _e( 'Activity that I have been mentioned in.', 'buddypress' ) ?>"><?php printf( __( '@%s Mentions', 'buddypress' ), bp_get_loggedin_user_username() ) ?><?php if ( bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ) : ?> <strong><?php printf( __( '(%s new)', 'buddypress' ), bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ) ?></strong><?php endif; ?></a></li>

            <?php endif; ?>

            <?php do_action( 'bp_activity_type_tabs' ) ?>
        </ul>
    </div><!-- .item-list-tabs -->

    <div class="item-list-tabs no-ajax" id="subnav">
        <ul>
            <li class="feed"><a href="<?php bp_sitewide_activity_feed_link() ?>" title="RSS Feed"><?php _e( 'RSS', 'buddypress' ) ?></a></li>

            <?php do_action( 'bp_activity_syndication_options' ) ?>

            <li id="activity-filter-select" class="last">
                <select>
                    <option value="-1"><?php _e( 'No Filter', 'buddypress' ) ?></option>
                    <option value="activity_update"><?php _e( 'Show Updates', 'buddypress' ) ?></option>
                    <option value="new_blog_post"><?php _e( 'Show Blog Posts', 'buddypress' ) ?></option>
                    <option value="new_blog_comment"><?php _e( 'Show Blog Comments', 'buddypress' ) ?></option>

                    <?php if ( bp_is_active( 'forums' ) ) : ?>
                        <option value="new_forum_topic"><?php _e( 'Show New Forum Topics', 'buddypress' ) ?></option>
                        <option value="new_forum_post"><?php _e( 'Show Forum Replies', 'buddypress' ) ?></option>
                    <?php endif; ?>

                    <?php if ( bp_is_active( 'groups' ) ) : ?>
                        <option value="created_group"><?php _e( 'Show New Groups', 'buddypress' ) ?></option>
                        <option value="joined_group"><?php _e( 'Show New Group Memberships', 'buddypress' ) ?></option>
                    <?php endif; ?>

                    <?php if ( bp_is_active( 'friends' ) ) : ?>
                        <option value="friendship_accepted,friendship_created"><?php _e( 'Show Friendship Connections', 'buddypress' ) ?></option>
                    <?php endif; ?>

                    <option value="new_member"><?php _e( 'Show New Members', 'buddypress' ) ?></option>

                    <?php do_action( 'bp_activity_filter_options' ) ?>
                </select>
            </li>
        </ul>
    </div><!-- .item-list-tabs -->

    <div class="activity">
        <?php locate_template( array( 'activity/activity-loop.php' ), true ) ?>
    </div><!-- .activity -->

    <?php do_action( 'bp_after_directory_activity_content' ) ?>

</div><!-- #content -->

<?php locate_template( array( 'sidebar.php' ), true ) ?>

What can I do to make the content show up like it did before the upgrade?

share|improve this question

closed as too localized by toscho Jul 4 '12 at 17:13

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Has your theme been upgraded to be compatible with bp 1.5x? There have been a number of significant changes.

share|improve this answer
The theme I'm using is one I built myself. Basically, I created a standard WP theme and used "BuddyPress Template Pack" to add BuddyPress features. Is there a list of these changes for users like me? – John Jan 24 '12 at 4:00
codex.buddypress.org/releases/… might be useful... – Aces Jan 24 '12 at 17:00
many/most plugins have needed upgrading as well.... – Aces Jan 24 '12 at 17:06

I deleted the pages created by BuddyPress Template Pack and manually recreated them. Everything started working.

share|improve this answer
Then mark this question as answered. – toscho May 7 '12 at 2:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.