Re: Trying to alter layout of bp_activity_action()
“Andy Peatling said 8 months, 4 weeks ago:
No idea if this is useful, but I’ll post it for reference.You can remove the meta links and time since in the activity_action via a filter (put the functions in your functions.php of your theme):
function remove_activity_meta( $content ) {
return ”;
}
add_filter( ‘bp_activity_permalink’, ‘remove_activity_meta’ );
add_filter( ‘bp_activity_time_since’, ‘remove_activity_meta’ );
add_filter( ‘bp_activity_delete_link’, ‘remove_activity_meta’ );
How i can remove also a “say:”, “publish new post:” phrases?