Re: Friends-Activity on Mainpage
Don’t edit the main files, it’s a bad idea. Use the template tags:
<?php if ( bp_has_activities( 'type=friends&user_id=' . bp_loggedin_user_id() . '&max=30' ) ) : ?>
<ul id="activity-list">
<?php while ( bp_activities() ) : bp_the_activity(); ?>
<li class="<?php bp_activity_css_class() ?>">
<?php bp_activity_content() ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif;?>