Hello everyone! I want to limit my activity pages’ entries. I know there is “per_page” for that but in my activity-loop.php, there is a line like that:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>
I tried to put it like <?php if ( bp_has_activities('per_page=10', bp_ajax_querystring( 'activity' ) ) ) : ?>. It limited to 10 but ajax didn’t work. Where can I put “per_page=10″ without breaking “bp_ajax_querystring” thing. Thank you.