Re: Activity Stream – “XYZ User has a new avatar”
I’ve been studying the WP and BP Core structure and the Buddypress Like plugin files for the last several hours. I feel kind of stupid that this is all I can come up with for now. I know there’s a bunch wrong with it. but I have to start somewhere. Does this look like the right form?
if (xprofile_avatar_uploaded == true) {
function bp_new_avatar_uploaded() {
echo "$user_id has updated their avatar";
}
add_action ('bp_activity_filter_options', 'bp_new_avatar_uploaded');
}