already a feed and email notification
though i’m sure it is possible to take the function bp_activity_at_message_notification
duplicate the atme part and have it hook into bp_core_add_notification
(adminbar notification)
Where can you find this function, and if you have the time, could you please explain more in-depth? thanks.
It looks like it adds mentions to the scope of the admin bar’s notification menu.
@rich! could you explain which file and where to make the changes to see this happen? This is more of a teaser than an explanation
Thank you.
This is more of a teaser than an explanation
ah yes, i tend to post in quick theory
I don’t know if it would work but essentially;
you would need to write your own action function that hooks on bp_activity_posted_update
that mimics the logic of bp_activity_at_message_notification
(where it looks for an username match in the content – then on the match issue the notification. have to figure out a way to delete the notification though)
function bp_core_add_notification( $item_id, $user_id, $component_name, $component_action, $secondary_item_id = false, $date_notified = false ) {
(located in bp-core-notifications.php)
I wouldn’t know what the proper component name/type in this case would be
i did submit a trac ticket enhancement for this though
Awesome thanks, I’ll check how this works!