Conversation notification and owners

    • stephane bonneau
      Participant
      # il y a 2 années et 6 mois

      Hello ! I have 2 problems with conversations :

      1. 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 ?
      2. When a new conversation is created, all admin are receiving notifications. How can we send notification only to the conversation’s owner ?

      thx.

    • Thomas
      Maître des clés
      # il y a 2 années et 6 mois

      Hi,

      1. 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.
      2. 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');

      Regards.

      Want to help WP Customer Area? It only takes few seconds!
      Rate & review the plugin on WordPress.org 🙂

    • Thomas
      Maître des clés
      # il y a 2 années et 6 mois

      Actually… You can also just disable the sent notifications for admins when a private content is created.

      Go Settings > WP Customer Area > Notifications > Individual notifications settings > Content created > Select Mode: “Disabled”

      If you don’t need to disable those notifications only for conversations but for all private content types, that should do the trick.

      Regards.

      Want to help WP Customer Area? It only takes few seconds!
      Rate & review the plugin on WordPress.org 🙂

Vous lisez 2 fils de discussion

The topic ‘Conversation notification and owners’ is closed to new replies.