when we allow in permission to select a user for conversation, all users are displayed ! how can we display and attribute conversation only for a specific group ?
When a new conversation is created, all admin are receiving notifications. How can we send notification only to the conversation’s owner ?
You can do that with the Owner Restrictions add-on. You can, for instance, only allow a user to select groups from where he belongs to.
You can use the code snippet below to remove any notification sent to administrators while a private content is created (conversations, private pages, private files…)
function wpca_disable_administrator_notifications() {
return [];
}
add_filter('cuar/notifications/administrator-recipient-ids', 'wpca_disable_administrator_notifications');