Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Editing Blog Post Titles in Activity

something like this, untested but you add it to a functions/custom php file and this will change the text in the activity steam (new posts, not retro active)

`
function my_blogs_activity_new_post_action( $content, &$poststuff, $permalink) {
return ‘‘ . $poststuff->post_title . ‘‘;
}
add_filter( ‘bp_blogs_activity_new_post_action’, ‘my_blogs_activity_new_post_action’, 1 ,3 );
`

Skip to toolbar