Re: Adding a second element for posting with an activity.
This works fine for me too, thanks – but it works only for personal activity updates and I really need it to work on group updates.
Is there a different action I need to hook this to to add meta data to group updates?
This is what I’ve got in my functions.php
`function add_title_to_activity( $content, $user_id, $activity_id ) {
bp_activity_update_meta( $activity_id, ‘activity_title’, $_POST );
}
add_action( ‘bp_activity_posted_update’, ‘add_title_to_activity’, 10, 3 );`