Is this ever going to be a feature added as an option for none programmers it would be much easier. Is there anything I can do without understanding the code
I’m not a programmer I have basic programming knowledge at best. I’ve tried pasting
// Fetch only the last five entries for all activity loops
function my_bp_activities_per_page_5( $retval ) {
$retval['per_page'] = 5;
return $retval;
}
add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activities_per_page_5' );
at the top of my current code and it is still the same showing an fatal error message and allowing me to view the admins profile.
Have I put the code in the wrong place, or is it even possible for me to comprehend what I need to do without knowing php?