<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									wpDiscuz User Notifications - gVectors Team - Forum				            </title>
            <link>https://gvectors.com/forum/wpdiscuz-user-notifications/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 11 Aug 2026 20:14:55 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Bell is not showing</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/bell-is-not-showing/</link>
                        <pubDate>Tue, 07 Jul 2026 07:15:06 +0000</pubDate>
                        <description><![CDATA[I enabled the license, uploaded the plugin but somehow the bell is not showing via the shortcode. I tried adding this shortcode in the template, on a page, and on a widget, but it only shows...]]></description>
                        <content:encoded><![CDATA[<p>I enabled the license, uploaded the plugin but somehow the bell is not showing via the shortcode. I tried adding this shortcode in the template, on a page, and on a widget, but it only shows the text of the shortcode.</p>
<p>&nbsp;</p>
<p><code data-wpd-clipboard=""><strong></strong></code></p>
<p>&nbsp;</p>
<p>The settings are set to REST API/AJAX both, but no difference. Furthermore I do not see any settings to enable it or disable the plugin. What could cause this to happen? Also adding it via the menu (custom link) it says that the variable is not valid.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Jeroen Janssen</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/bell-is-not-showing/</guid>
                    </item>
				                    <item>
                        <title>How to disable notification for certain user roles</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/how-to-disable-notification-for-certain-user-roles/</link>
                        <pubDate>Fri, 05 Jun 2026 11:16:00 +0000</pubDate>
                        <description><![CDATA[The wpDiscuz User Notifications addon allows you to disable notifications for specific user roles using the wpdiscuz_un_add_notification hook.
Below is an example of how the hook can be use...]]></description>
                        <content:encoded><![CDATA[<p>The wpDiscuz User Notifications addon allows you to disable notifications for specific user roles using the <span style="color: #800000"><code>wpdiscuz_un_add_notification</code> </span>hook.</p>
<p>Below is an example of how the hook can be used:</p>
<pre contenteditable="false">add_filter('wpdiscuz_un_add_notification', function($should_add, $data) {
      if (!$should_add || empty($data)) {
          return $should_add;
      }

      $recipient     = get_userdata((int)$data);

      if (!$recipient || empty($recipient-&gt;roles)) {
          return $should_add;
      }

      $blocked_roles = ;

      foreach ($blocked_roles as $role) {
          if (in_array($role, $recipient-&gt;roles, true)) {
              return false;
          }
      }

      return $should_add;
  }, 10, 2);</pre>
<h3> </h3>
<h3><span style="font-size: 18pt">Hook parameters explanation:</span></h3>
<p>&nbsp;</p>
<ul>
<li>
<p><strong>$should_add</strong> — determines whether the notification should be added to the database (true/false)</p>
</li>
<li>
<p><strong>$data</strong> — an array containing notification details, including:</p>
<ul>
<li>
<p>recipient_id — ID of the user receiving the notification</p>
</li>
<li>
<p>recipient_email — email of the recipient</p>
</li>
<li>
<p>recipient_name — display name of the recipient</p>
</li>
<li>
<p>user_id — ID of the user who triggered the action</p>
</li>
<li>
<p>user_email — email of the triggering user</p>
</li>
<li>
<p>user_name — name of the triggering user</p>
</li>
<li>
<p>user_ip — IP of the triggering user</p>
</li>
<li>
<p>item_id — post/topic ID (wpDiscuz / wpForo / BuddyPress)</p>
</li>
<li>
<p>secondary_item_id — comment ID (wpDiscuz), post ID (wpForo), or 0 for follows/ratings</p>
</li>
<li>
<p>component_name — source plugin (wpdiscuz, wpforo, bp.friends)</p>
</li>
<li>
<p>component_action — action type</p>
</li>
<li>
<p>action_date — MySQL datetime of the action</p>
</li>
<li>
<p>action_timestamp — Unix timestamp of the action</p>
</li>
<li>
<p>is_new — 1/0 unread status</p>
</li>
<li>
<p>extras — additional data such as vote direction or rating value</p>
</li>
</ul>
</li>
</ul>
<p><strong><em>For guidance on safely adding custom PHP code to WordPress, you can refer to this article</em></strong>:<br /><a href="https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/?utm_source=chatgpt.com">How to add custom code in WordPress safely</a></p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/how-to-disable-notification-for-certain-user-roles/</guid>
                    </item>
				                    <item>
                        <title>Error when adding bell to main menu with custom URL %wpdiscuz-bell%</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/error-when-adding-bell-to-main-menu-with-custom-url-wpdiscuz-bell/</link>
                        <pubDate>Sun, 22 Feb 2026 08:45:20 +0000</pubDate>
                        <description><![CDATA[Purchased and installed User Notifications today.
I&#039;m following your instructions to add notification bell to main menu by adding custom link with URL %wpdiscuz-bell%.
I get error &quot;Please ...]]></description>
                        <content:encoded><![CDATA[<p>Purchased and installed User Notifications today.</p>
<p>I'm following your instructions to add notification bell to main menu by adding custom link with URL %wpdiscuz-bell%.</p>
<p>I get error "<span>Please provide a valid link."</span></p>
<p>Please advise how to add bell to main menu.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Rob Mielcarski</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/error-when-adding-bell-to-main-menu-with-custom-url-wpdiscuz-bell/</guid>
                    </item>
				                    <item>
                        <title>Critical Bug: All Unseen Notifications Disappear/Vanish After Interacting with a Single Notification</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/critical-bug-all-unseen-notifications-disappear-vanish-after-interacting-with-a-single-notification/</link>
                        <pubDate>Wed, 10 Dec 2025 04:44:41 +0000</pubDate>
                        <description><![CDATA[Hello,
I am reporting a critical bug that causes the loss of all unseen notifications when a user interacts with just one of them.
Issue Description:
When a user has multiple unseen notif...]]></description>
                        <content:encoded><![CDATA[<p data-path-to-node="6,0">Hello,</p>
<p data-path-to-node="6,1">I am reporting a critical bug that causes the loss of all unseen notifications when a user interacts with just one of them.</p>
<p data-path-to-node="6,2"><b>Issue Description:</b></p>
<p data-path-to-node="6,3">When a user has multiple unseen notifications (e.g., 10, 20, or 30 total), and they click on <b>one specific notification</b> (e.g., a "Like" or a "Reply" alert) to view its content:</p>
<ol start="1" data-path-to-node="6,4">
<li>
<p data-path-to-node="6,4,0,0">The user is successfully directed to the content related to that specific notification.</p>
</li>
<li>
<p data-path-to-node="6,4,1,0">After returning to the Notifications tab, <b>all other unseen notifications immediately disappear</b>.</p>
</li>
<li>
<p data-path-to-node="6,4,2,0">The tab then displays the message, <b>"No notifications"</b> (or similar, indicating an empty list).</p>
</li>
</ol>
<p data-path-to-node="6,5"><b>Crucially, these missing notifications do not move to the "Read" or "Archive" section; they are completely and irreversibly deleted from the user's account upon the first interaction.</b></p>
<p data-path-to-node="6,6"><b>Steps to Reproduce:</b></p>
<ol start="1" data-path-to-node="6,7">
<li>
<p data-path-to-node="6,7,0,0">Ensure the user has a significant number of unread notifications (e.g., 10 or more).</p>
</li>
<li>
<p data-path-to-node="6,7,1,0">Go to the main Notifications tab.</p>
</li>
<li>
<p data-path-to-node="6,7,2,0">Click on <b>any single notification</b> in the list (e.g., an alert for a new like).</p>
</li>
<li>
<p data-path-to-node="6,7,3,0">View the content or return directly to the Notifications tab.</p>
</li>
<li>
<p data-path-to-node="6,7,4,0">Observe the Notifications tab. All the remaining unread notifications are gone.</p>
</li>
</ol>
<p data-path-to-node="6,8">This results in a massive and immediate data loss, making the notification system unreliable and frustrating for users who miss out on important alerts.</p>
<p data-path-to-node="6,9">Please investigate this critical issue immediately. Thank you.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>wowa1986</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/critical-bug-all-unseen-notifications-disappear-vanish-after-interacting-with-a-single-notification/</guid>
                    </item>
				                    <item>
                        <title>Confirmation on deleting user notifications</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/confirmation-on-deleting-user-notifications/</link>
                        <pubDate>Thu, 18 Sep 2025 10:22:34 +0000</pubDate>
                        <description><![CDATA[When deleting user notifications (bell) in wpDiscuz, it is always necessary to confirm the deletion.
I find it rather annoying.
Could I disable the confirmation message when deleting user ...]]></description>
                        <content:encoded><![CDATA[<p>When deleting user notifications (bell) in wpDiscuz, it is always necessary to confirm the deletion.</p>
<p>I find it rather annoying.</p>
<p>Could I disable the confirmation message when deleting user notifications?</p>
<p>Thank you in advance</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>tradoholic</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/confirmation-on-deleting-user-notifications/</guid>
                    </item>
				                    <item>
                        <title>I want to download version 2.0.0, it worked more stable</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/i-want-to-download-version-2-0-0-it-worked-more-stable/</link>
                        <pubDate>Sat, 29 Mar 2025 06:44:09 +0000</pubDate>
                        <description><![CDATA[version 2.0.1 works worse, I would like to download version 2.0.0Send a link to version 2.0.0 by emailHere is a comment from the editor of my site: Something has been lagging here in the las...]]></description>
                        <content:encoded><![CDATA[<p>version 2.0.1 works worse, I would like to download version 2.0.0<br />Send a link to version 2.0.0 by email<br /><br />Here is a comment from the editor of my site: Something has been lagging here in the last few days and I wouldn't say it's convenient to constantly mark each comment if there are a lot of them :(<br /><br />the strip with "delete all" covers the "read" button on the last comment, I have the same problem. You can cover it from below if you move the mouse millimeter by millimeter to get into the gap</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Alexander Puzanov</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/i-want-to-download-version-2-0-0-it-worked-more-stable/</guid>
                    </item>
				                    <item>
                        <title>User cannot receive notifications</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/user-cannot-receive-notifications/</link>
                        <pubDate>Fri, 21 Feb 2025 03:51:41 +0000</pubDate>
                        <description><![CDATA[After User Notifications was upgraded to the latest version along with wpDiscuz, users no longer receive notifications]]></description>
                        <content:encoded><![CDATA[<p>After User Notifications was upgraded to the latest version along with wpDiscuz, users no longer receive notifications</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>smallflyingrat</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/user-cannot-receive-notifications/</guid>
                    </item>
				                    <item>
                        <title>Fatal error on adding website to network</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/fatal-error-on-adding-website-to-network/</link>
                        <pubDate>Fri, 17 Jan 2025 14:19:52 +0000</pubDate>
                        <description><![CDATA[PHP Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class WunDBManager does not have a method &quot;addNewBlog&quot; in /wp-includes/class-wp...]]></description>
                        <content:encoded><![CDATA[<p><span>PHP Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class WunDBManager does not have a method "addNewBlog" in /wp-includes/class-wp-hook.php:324</span></p>
<p>Action location: /plugins/wpdiscuz-user-notifications/wun-index.php:41</p>
<p>"add_action("wp_insert_site", );"</p>
<p>Should that be "onNewBlog" by any chance?</p>
<p> </p>
<p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Menno Henselmans</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/fatal-error-on-adding-website-to-network/</guid>
                    </item>
				                    <item>
                        <title>can&#039;t find previous notification</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/cant-find-previous-notification/</link>
                        <pubDate>Fri, 29 Nov 2024 15:15:42 +0000</pubDate>
                        <description><![CDATA[I have a problem with notification. There are many people comment on my website, and usually they get more than one notification at a time. If they click the bell, they will see a list of no...]]></description>
                        <content:encoded><![CDATA[<p>I have a problem with notification. There are many people comment on my website, and usually they get more than one notification at a time. If they click the bell, they will see a list of notifications. However, if they check one of them by clicking the post url, they will jump to the post page and the whole notification list just disappears. So they can't check other notifications. How solve this? </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Zhou Fang</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/cant-find-previous-notification/</guid>
                    </item>
				                    <item>
                        <title>bug related to wp_wc_users_notifications</title>
                        <link>https://gvectors.com/forum/wpdiscuz-user-notifications/bug-related-to-wp_wc_users_notifications/</link>
                        <pubDate>Sat, 03 Aug 2024 00:47:40 +0000</pubDate>
                        <description><![CDATA[hello 
this plugin dod not work for my site because it give me in error-log :
WordPress database error Table &#039;xxxxx.wp_wc_users_notifications&#039; doesn&#039;t exist for query SELECT COUNT(*) FROM ...]]></description>
                        <content:encoded><![CDATA[<p>hello </p>
<p>this plugin dod not work for my site because it give me in error-log :</p>
<p>WordPress database error Table 'xxxxx.wp_wc_users_notifications' doesn't exist for query SELECT COUNT(*) FROM `wp_wc_users_notifications` WHERE 1 AND `recipient_id` = 31467008 AND `component_name` IN ('wpdiscuz','wpforo') AND `component_action` IN ('wpdiscuz_vote','wpdiscuz_new_follower','wpdiscuz_my_post_rate','wpdiscuz_mention','wpdiscuz_my_comment_reply','wpdiscuz_my_post_comment','wpdiscuz_subscribed_post_comment','wpdiscuz_following_user_comment','wpdiscuz_my_comment_approve','new_reply','new_like','new_dislike','new_up_vote','new_down_vote','new_mention') AND `action_timestamp` &gt; (1722656415 - (180 * 86400)) AND `is_new` = 1 made by require('wp-blog-header.php'), wp, WP-&gt;main, WP-&gt;parse_request, do_action_ref_array('parse_request'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, rest_api_loaded, WP_REST_Server-&gt;serve_request, WP_REST_Server-&gt;dispatch, WP_REST_Server-&gt;respond_to_request, WunRoute-&gt;restGetNotifications, WunRoute-&gt;getNotificationsData, WunDBManager-&gt;getNotificationsCount</p>
<p>xxxxx. i hided it because it my database name </p>
<p> </p>
<p>how to create this table ?</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-user-notifications/">wpDiscuz User Notifications</category>                        <dc:creator>Essam</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-user-notifications/bug-related-to-wp_wc_users_notifications/</guid>
                    </item>
							        </channel>
        </rss>
		