<?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>
									Some other roles can moderate whereas it should not be possible - wpDiscuz Frontend Moderation				            </title>
            <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 20 Jul 2026 15:35:33 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28824</link>
                        <pubDate>Wed, 23 Jun 2021 15:15:59 +0000</pubDate>
                        <description><![CDATA[Ok, I will try that and see how it goes
Anyway I found a fix : I edited the php file to modify capabilities conditions to &#039;moderate_comments AND edit_comment&#039; instead of OR
Best regards]]></description>
                        <content:encoded><![CDATA[<p>Ok, I will try that and see how it goes</p>
<p>Anyway I found a fix : I edited the php file to modify capabilities conditions to 'moderate_comments AND edit_comment' instead of OR</p>
<p>Best regards</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>eric welment</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28824</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28822</link>
                        <pubDate>Wed, 23 Jun 2021 10:00:06 +0000</pubDate>
                        <description><![CDATA[It&#039;s not enough to add the functions. You should also call the functions you&#039;ve added while the WordPress init hook is working. More info here:]]></description>
                        <content:encoded><![CDATA[<p>It's not enough to add the functions. You should also call the functions you've added while the WordPress init hook is working. More info here: https://developer.wordpress.org/reference/hooks/init/</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28822</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28801</link>
                        <pubDate>Mon, 21 Jun 2021 13:34:47 +0000</pubDate>
                        <description><![CDATA[I put them in my functions.php]]></description>
                        <content:encoded><![CDATA[<p>I put them in my functions.php</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>eric welment</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28801</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28800</link>
                        <pubDate>Mon, 21 Jun 2021 13:10:10 +0000</pubDate>
                        <description><![CDATA[@eric-welment,
Have you called those functions before the wpDiscuz functions are being called?]]></description>
                        <content:encoded><![CDATA[<p>@eric-welment,</p>
<p>Have you called those functions before the wpDiscuz functions are being called?  </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28800</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28796</link>
                        <pubDate>Mon, 21 Jun 2021 08:49:04 +0000</pubDate>
                        <description><![CDATA[Hi, I am sorry but I removed these capabilities but &quot;inscrits&quot; can still moderate comments
I put this in functions.php (child theme)
// remove inscrits capabilities
function remove_inscri...]]></description>
                        <content:encoded><![CDATA[<p>Hi, I am sorry but I removed these capabilities but "inscrits" can still moderate comments</p>
<p>I put this in functions.php (child theme)</p>
<p>// remove inscrits capabilities</p>
<p>function remove_inscrits_moderate_comments(){<br />global $wp_roles;<br />$wp_roles-&gt;remove_cap( 'inscrits', 'moderate_comments' );<br />}</p>
<p>function remove_inscrits_edit_comment(){<br />global $wp_roles;<br />$wp_roles-&gt;remove_cap( 'inscrits', 'edit_comment' );<br />}</p>
<p>Can you please help solve this issue.</p>
<p>Regards</p>
<p>Eric</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>eric welment</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28796</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28778</link>
                        <pubDate>Sat, 19 Jun 2021 13:03:44 +0000</pubDate>
                        <description><![CDATA[Hi, sure, here are those:

moderate_comments
edit_comment]]></description>
                        <content:encoded><![CDATA[<p>Hi, sure, here are those:</p>
<ul>
<li>moderate_comments</li>
<li>edit_comment</li>
</ul>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28778</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28757</link>
                        <pubDate>Fri, 18 Jun 2021 10:10:44 +0000</pubDate>
                        <description><![CDATA[the problem is not the plugin, the problem is your plugin moderation is linked to a capability shared by several roles, it is not linked to roles. Can you tell me the capability you use ?]]></description>
                        <content:encoded><![CDATA[<p>the problem is not the plugin, the problem is your plugin moderation is linked to a capability shared by several roles, it is not linked to roles. Can you tell me the capability you use ?</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>eric welment</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28757</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28755</link>
                        <pubDate>Fri, 18 Jun 2021 09:45:53 +0000</pubDate>
                        <description><![CDATA[@eric-welment,
Please deactivate the plugin and check again. If the issue is caused by the plugin just contact the plugin support and ask them to solve the issue.]]></description>
                        <content:encoded><![CDATA[<p>@eric-welment,</p>
<p>Please deactivate the plugin and check again. If the issue is caused by the plugin just contact the plugin support and ask them to solve the issue. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28755</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28734</link>
                        <pubDate>Thu, 17 Jun 2021 09:35:31 +0000</pubDate>
                        <description><![CDATA[Ok. Can you please provide a snippet so that moderation is linked to admin+editor roles and not to a specific capability.
Thanks in advance]]></description>
                        <content:encoded><![CDATA[<p>Ok. Can you please provide a snippet so that moderation is linked to admin+editor roles and not to a specific capability.</p>
<p>Thanks in advance</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>eric welment</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/paged/2/#post-28734</guid>
                    </item>
				                    <item>
                        <title>RE: Some other roles can moderate whereas it should not be possible</title>
                        <link>https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/#post-28733</link>
                        <pubDate>Thu, 17 Jun 2021 09:20:39 +0000</pubDate>
                        <description><![CDATA[@eric-welment,
Yes sure, it&#039;s correct.]]></description>
                        <content:encoded><![CDATA[<p>@eric-welment,</p>
<p>Yes sure, it's correct. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-frontend-moderation/">wpDiscuz Frontend Moderation</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-frontend-moderation/some-other-roles-can-moderate-whereas-it-should-not-be-possible/#post-28733</guid>
                    </item>
							        </channel>
        </rss>
		