Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Friends-Activity on Mainpage

@apeatling

Keymaster

Don’t edit the main files, it’s a bad idea. Use the template tags:

<?php if ( bp_has_activities( 'type=friends&amp;user_id=' . bp_loggedin_user_id() . '&amp;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;?>

Skip to toolbar