Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: [Resolved] How to edit items in bp_activity_action


Boone Gorges
Keymaster

@boonebgorges

Hi Paul,

If I understand your question correctly, you should be able to find some help in the function bp_activity_new_comment(), in bp-activity.php. Look especially around line 752. That’s where the action is put together for activity comments. In a plugin, you can filter ‘bp_activity_comment_action’ something like this:

`function bbg_comment_reply_action( $action, $userlink ) {
// Do whatever you want to $action, and then:
return $action;
}
add_filter( ‘bp_activity_comment_action’, ‘bbg_comment_reply_action’, 10, 2 );`

Good luck!

Skip to toolbar