@mahdiar
Its been around 1.6 since I tried filtering the activity stream according to the codex:
Activity Loop
Just to see if something had changed I changed this line:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>
in activity-loop.php in my child theme and made the following modifications:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&object=status' ) ) : ?>
As well I tried this:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&per_page=5' ) ) : ?>
I also tried this:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&scope=friends' ) ) : ?>
None of them had any effect in the activity stream output. @mercime @hnla What has changed that you can no longer filter with my above examples? It used to work but it has been a while since I fiddled around that area. I am using WP 3.6 and BP 1.8.1 and a very basic child theme of bp-default. Thanks!
@mercime @hnla
Never mind I made a mistake and copied the wrong files over to my child theme and just realized what I did, du-huh!
@mahdiar
It would help if provided more info like theme your using. If you have the proper directory structure the examples I provided will work. Please review:
https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
Also review:
Activity Loop
As well as @pollyplummer ‘s article:
http://wpmu.org/how-to-customize-the-buddypress-activity-loop/
Thanks for your help bp-help !