<?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>
									Frequently Asked Questions - wpDiscuz Support Forum				            </title>
            <link>https://wpdiscuz.com/community/f-a-q/</link>
            <description>wpDiscuz WordPress Comment Plugin Community. Support and Resources.</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 12 May 2026 20:39:13 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>How to Prevent Guests from Using Registered Users&#039; Email Addresses</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-prevent-guests-from-using-registered-users-email-addresses/</link>
                        <pubDate>Fri, 21 Feb 2025 10:00:12 +0000</pubDate>
                        <description><![CDATA[Starting from version 7.6.28, a new hook &quot;wpdiscuz_before_wp_new_comment&quot;, has been added. 
This action allows you to perform tasks based on comment data. For example, you can use it to pre...]]></description>
                        <content:encoded><![CDATA[<p>Starting from version 7.6.28, a new hook "<a href="https://wpdiscuz.com/docs/codex/actions/wpdiscuz_before_wp_new_comment/" target="_blank" rel="noopener">wpdiscuz_before_wp_new_comment</a>", has been added. </p>
<p>This action allows you to perform tasks based on comment data. For example, you can use it to prevent guests from using registered users’ email addresses.<br /><br />To achieve this, use the following hook code:</p>
<pre contenteditable="false">add_action("wpdiscuz_before_wp_new_comment", function($commentdata){
    if (!empty($commentdata) &amp;&amp; empty($commentdata)) {
        $is_user_exist = get_user_by("email", sanitize_text_field($commentdata));

        if ($is_user_exist) {
            wp_die(esc_html__("***A user with this email is already registered! Please log in or use a different one!***", "wpdiscuz"));
        }
    }
});</pre>
<p>The <span style="color: #ff0000">red-marked</span> text can be customized as needed.<br /><br />For a step-by-step guide on adding custom code to WordPress without breaking your site, check out this article: <a class="wpforo-auto-embeded-link" href="https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/" target="_blank" rel="nofollow noopener">https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/</a></p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-prevent-guests-from-using-registered-users-email-addresses/</guid>
                    </item>
				                    <item>
                        <title>How to modify the location of wpDiscuz attachments.</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-modify-the-location-of-wpdiscuz-attachments/</link>
                        <pubDate>Fri, 09 Aug 2024 09:55:43 +0000</pubDate>
                        <description><![CDATA[Starting from wpDiscuz version 7.6.20, you can modify the location of wpDiscuz attachments using the wpdiscuz_uploads_folder hook. 
The code snippet below allows you to create a new folder ...]]></description>
                        <content:encoded><![CDATA[<p>Starting from wpDiscuz version 7.6.20, you can modify the location of wpDiscuz attachments using the <a href="https://wpdiscuz.com/docs/codex/filters/wpdiscuz_uploads_folder/" target="_blank" rel="noopener">wpdiscuz_uploads_folder</a> hook. </p>
<p>The code snippet below allows you to create a new folder within the '<em><strong>/uploads'</strong></em> directory, where all wpDiscuz attachments will be stored:</p>
<div class="entry-content">
<div class="doc-field-usage">
<pre contenteditable="false">add_filter("wpdiscuz_uploads_folder", function ($dir) {
    $dir  = "wpdiscuz_uploads";
    return $dir;
});
</pre>
<p>Insert this hook code into the functions.php file of your active WordPress theme. For more information on how to add custom code, refer to this guide: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/</p>
<p><span style="color: #ff6600"><em>Important: This code will only affect new attachments. Previously inserted images will not display on the frontend because the path has already changed. To resolve this issue, you'll need to update the existing attachment paths in the database.</em></span></p>
<p><strong>We strongly recommend backing up your database tables before making any changes</strong>.</p>
<p>If you’re not familiar with database structure and are unable to change the paths yourself, we recommend contacting paid plugin customization and custom addon development services through the gVectors Team. They can assess the work and create the necessary changes for you. Just contact us via salesgvectors.com email address and send a list of requirements you'd like to have.</p>
</div>
</div>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-modify-the-location-of-wpdiscuz-attachments/</guid>
                    </item>
				                    <item>
                        <title>How to solve the CSS conflict with the Jetpack likes Widget</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-solve-the-css-conflict-with-the-jetpack-likes-widget/</link>
                        <pubDate>Fri, 02 Jun 2023 08:23:26 +0000</pubDate>
                        <description><![CDATA[If you use the Jetpack likes Widget you may see the extra space between the &quot;Like&quot; button and wpDiscuz comment footer section. 

The CSS code below helps you to easily solve the conflict: ...]]></description>
                        <content:encoded><![CDATA[<p>If you use the Jetpack likes Widget you may see the extra space between the "Like" button and wpDiscuz comment footer section. </p>
3314
<p>The CSS code below helps you to easily solve the conflict: </p>
<pre contenteditable="false">.comment-likes-widget.jetpack-likes-widget.comment-likes iframe {<br />    height: 18px !important;<br />}</pre>
<p>Put the code in the "<strong>Custom CSS code</strong>" textarea, located in the <em>Dashboard &gt; wpDiscuz &gt; Settings &gt; Styles &amp; Colors</em> admin page.<br /><br /><span style="color: #ff6600;font-size: 10pt"><em><strong>Don't forget to delete the caches and press CTRL+F5(twice) on the frontend before checking.</strong></em></span></p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-solve-the-css-conflict-with-the-jetpack-likes-widget/</guid>
                    </item>
				                    <item>
                        <title>How to change the &quot;Author&quot; Label for Administrators</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-change-the-author-label-for-administrators/</link>
                        <pubDate>Sat, 27 May 2023 11:11:34 +0000</pubDate>
                        <description><![CDATA[Let&#039;s say the Post Author is also the Administrator of the website. In this case, in the comment section, the user will have an &quot;Author&quot; label when he/she leaves a comment. 

To change the...]]></description>
                        <content:encoded><![CDATA[<p>Let's say the Post Author is also the Administrator of the website. In this case, in the comment section, the user will have an "Author" label when he/she leaves a comment. </p>
3305
<p>To change the label you should use the hook code below:</p>
<pre contenteditable="false">add_filter("wpdiscuz_author_title", function ($label, $comment) {
    global $post;
    if ($comment-&gt;user_id == $post-&gt;post_author) {
        $label = __("***Administrator***", "wpdiscuz");
    }
    return $label;
}, 10, 2);</pre>
<p>Put the code in the active theme functions.php file. This article should be helpful for you:<span> </span><a class="wpforo-auto-embeded-link" href="https://themaverickspirit.com/add-code-snippets-functions-php-wordpress/" target="_blank" rel="nofollow noopener">https://themaverickspirit.com/add-code-snippets-functions-php-wordpress/</a></p>
<p>The<span> red-marked</span> phrase can be changed as you like.   </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-change-the-author-label-for-administrators/</guid>
                    </item>
				                    <item>
                        <title>How to solve the conflict with the GTranslate plugin</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-solve-the-conflict-with-the-gtranslate-plugin/</link>
                        <pubDate>Tue, 25 Apr 2023 10:48:24 +0000</pubDate>
                        <description><![CDATA[Starting from the wpDiscuz 7.6.0 version, you can change the attributes of the wpDiscuz comment form using the wpdiscuz_comment_form_args hook.
With the hook, you&#039;ll be allowed to add the &#039;...]]></description>
                        <content:encoded><![CDATA[<p>Starting from the wpDiscuz 7.6.0 version, you can change the attributes of the wpDiscuz comment form using the <a href="https://wpdiscuz.com/docs/codex/filters/wpdiscuz_comment_form_args/" target="_blank" rel="noopener">wpdiscuz_comment_form_args</a> hook.</p>
<p>With the hook, you'll be allowed to add the <em><strong><span style="color: #0000ff">'notranslate'</span> </strong></em>class for the wpDiscuz comment form, so the GTranslate plugin functions won't work for the wpDiscuz comment form.</p>
<p> You should use the hook code below: </p>
<pre contenteditable="false">add_filter("wpdiscuz_comment_form_args", function($args){
    $args[] = "notranslate";
    return $args;
});</pre>
<p>This doc should help you easily add the PHP code in the active theme functions.php file: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-solve-the-conflict-with-the-gtranslate-plugin/</guid>
                    </item>
				                    <item>
                        <title>How to customize the wpDiscuz WordPress plugin styles</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-customize-the-wpdiscuz-wordpress-plugin-styles/</link>
                        <pubDate>Fri, 21 Apr 2023 12:01:38 +0000</pubDate>
                        <description><![CDATA[wpDiscuz comment system comes with three nice layouts. You can choose your proffered layout in Dashboard &gt; wpDiscuz &gt; Forms &gt; Edit Comment Forms screen. More info here:
wpDiscuz als...]]></description>
                        <content:encoded><![CDATA[<p>wpDiscuz comment system comes with three nice layouts. <span>You can choose your proffered layout in </span><span>Dashboard &gt; wpDiscuz &gt; Forms &gt; Edit Comment Forms</span><span> screen. More info here: https://wpdiscuz.com/docs/wpdiscuz-7/customization/comment-layouts/</span></p>
<p>wpDiscuz also allows you to customize all three layouts and three styles by customizing comment template files and the main style.css file. Here you can find more info: https://wpdiscuz.com/docs/wpdiscuz-7/customization/custom-template-and-style/</p>
<p>Additionally, you may need to apply small CSS codes and don't want to use the customization method mentioned above. Let's see how you can make small style changes. </p>
<p>First of all, you should find classes by pressing F12 on the browser and opening Chrome or Firefox Console (it'll help you easily write CSS rules you need to customize).</p>
<p><a class="everlightbox-trigger" title="" href="https://gvectors.com/wp-content/uploads/wpforo/attachments/6750/3221-CSS.png" rel="nofollow nofollow" data-gallery="#wpf-content-blueimp-gallery" data-rel="lightbox-image-1" data-magnific_type="image" data-rl_title="" data-rl_caption=""><img title="CSS" src="https://gvectors.com/wp-content/uploads/wpforo/attachments/6750/thumbnail/3221-CSS.png" alt="CSS" /></a></p>
<p>Then, you'll need to apply the CSS rules. </p>
<p>Let's discuss an example. If you want to change the color of the thread list title. The right class is: </p>
<pre contenteditable="false">#wpdcom .wpd-thread-head .wpd-thread-info</pre>
<p>The CSS rule is: </p>
<pre contenteditable="false">{color: ***#303066***;} </pre>
<p>The <span style="color: #ff0000">red-marked</span> value is the color you want to use. </p>
<p>Finally, the code looks:</p>
<pre contenteditable="false">#wpdcom .wpd-thread-head .wpd-thread-info{
     color: ***#303066***;
}</pre>
<p>This is a small video instruction: https://www.screencast.com/t/XPJPyqcqsH6</p>
<p>Put the code in the "<strong>Custom CSS code</strong>" textarea, located in the <em>Dashboard &gt; wpDiscuz &gt; Settings &gt; Styles &amp; Colors</em> admin page. <br /><br /><strong><span style="color: #ff6600"><em>Don't forget to delete the caches once you make changes.</em></span></strong></p>
<p>This website should help you to write CSS rules: https://www.w3schools.com/cssref/default.asp</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-customize-the-wpdiscuz-wordpress-plugin-styles/</guid>
                    </item>
				                    <item>
                        <title>How to modify the WordPress “from email address”</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-modify-the-wordpress-from-email-address/</link>
                        <pubDate>Tue, 11 Apr 2023 11:19:55 +0000</pubDate>
                        <description><![CDATA[Are you looking for a way to change the &quot;from email address&quot; in your WordPress theme? 
All you have to do is add this code to your WordPress active theme’s functions.php file:
add_filter(&#039;...]]></description>
                        <content:encoded><![CDATA[<p>Are you looking for a way to change the "from email address" in your WordPress theme? </p>
<p>All you have to do is add this code to your WordPress active theme’s functions.php file:</p>
<pre contenteditable="false">add_filter('wp_mail_from', function ($email){
   return '***no-reply@blogname.com***';
});</pre>
<p>Don't forget to change the <span style="color: #ff0000"><strong><i>red-marked</i></strong></span> code (set the right email) before using it. </p>
<p>This is a small instruction on How to Easily Add Custom Code in WordPress:  https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/</p>
<p>More info for the wp_mail_from hook here: https://developer.wordpress.org/reference/hooks/wp_mail_from/</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-modify-the-wordpress-from-email-address/</guid>
                    </item>
				                    <item>
                        <title>How to use the Inline Commenting</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-use-the-inline-commenting/</link>
                        <pubDate>Mon, 23 Jan 2023 11:11:56 +0000</pubDate>
                        <description><![CDATA[The &quot;Article inline Feedback&quot; feature allows article authors to add some questions for readers on a certain part of the article content and ask for feedback while visitors read it.
Let&#039;s di...]]></description>
                        <content:encoded><![CDATA[<p>The "Article inline Feedback" feature allows article authors to add some questions for readers on a certain part of the article content and ask for feedback while visitors read it.</p>
<p>Let's discuss how to add the Inline Feedback option in different editors. </p>
<h4 style="color: #111736;font-size: 15px">#1 Inline Feedback Button on the Classic Editors </h4>
<p>Generally, you can add the Inline Feedback button in post content using the «Comment» button on the post editor toolbar like this:</p>
<p><a title="" href="https://wpdiscuz.com/wp-content/uploads/2019/12/inline-feedbak-shortcode-7.gif" data-rel="lightbox-image-0" data-magnific_type="image" data-rl_title="" data-rl_caption=""><img class="alignnone wp-image-6678" src="https://wpdiscuz.com/wp-content/uploads/2019/12/inline-feedbak-shortcode-7.gif" alt="" width="401" height="200" /></a></p>
<h4 style="color: #111736;font-size: 15px">#2 Inline Feedback Button on the Elementor plugin</h4>
<p>For the Elementor plugin, the Inline Commenting button is available in the 'Text Editor' section</p>
4456
<p>&nbsp;</p>
<p>You can use the shortcode as well:<br /><br /></p>
<pre contenteditable="false">What do you think of this?</pre>
<p><br /><br /><em><strong>If there is more than one Inline Feedback button, just make sure the red-marked id=”<span style="color: #ff0000">idNCXs</span>” ID is unique in each shortcode.</strong></em></p>
<h4 style="color: #111736;font-size: 15px">#3 Inline Feedback Button on Gutenberg (Block Editor)</h4>
<p data-start="110" data-end="229">Starting from<span> </span><strong data-start="124" data-end="144">wpDiscuz v7.6.42</strong>, you can find the<span> </span><strong data-start="163" data-end="184">Inline Commenting</strong><span> </span>button in the Gutenberg<span> </span><strong data-start="209" data-end="222">Paragraph</strong><span> </span>block.</p>
4453
<p data-start="110" data-end="229">The Inline Commenting button is available<span> </span><strong data-start="288" data-end="318">only when text is selected</strong>. If no text is selected, the button will not appear.</p>
<p data-start="373" data-end="528"><strong data-start="373" data-end="387">Important:</strong><span> </span>The Inline Commenting feature can be used<span> </span><strong data-start="430" data-end="463">only with the Paragraph block</strong>. This restriction is made by the<span> </span><strong data-start="500" data-end="520">Gutenberg editor</strong>.</p>
<p>Here you'll find more information: https://wpdiscuz.com/docs/wpdiscuz-7/plugin-settings/inline-commenting/</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-use-the-inline-commenting/</guid>
                    </item>
				                    <item>
                        <title>How to disable the pingbacks and trackbacks</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-disable-the-pingbacks-and-trackbacks/</link>
                        <pubDate>Tue, 10 Jan 2023 10:04:12 +0000</pubDate>
                        <description><![CDATA[Trackbacks and pingbacks allow blogs to notify if they have linked to some posts. 

However, you may want to disable pingbacks and trackbacks on existing WordPress posts.
This FAQ will he...]]></description>
                        <content:encoded><![CDATA[<p>Trackbacks and pingbacks allow blogs to notify if they have linked to some posts. </p>
3038
<p>However, you may want to disable pingbacks and trackbacks on existing WordPress posts.</p>
<p>This FAQ will help you to do that. </p>
<ol>
<li>Go to Dashboard &gt; Settings &gt; Discussion admin page</li>
<li>Uncheck the "Allow link notifications from other blogs (pingbacks and trackbacks)" checkbox<br /><br />
3032
</li>
<li>Scroll to the bottom of the page and click Save Changes.</li>
</ol>
<p>This will disable Trackbacks on further created posts and pages. However, any posts or pages you have created before may still have Trackbacks enabled.</p>
<p>Follow the steps below to disable trackbacks and pingbacks on existing WordPress posts:</p>
<ol>
<li>Go to Posts &gt; All Posts admin page and then click on the Screen Options button at the top right corner of the screen.</li>
<li>Select all posts by checking the checkbox next to the title label.</li>
<li>Select "Edit" from Bulk Actions drop-down and click on the "Apply" button.</li>
<li>In the bulk edit box, you need to look for the pings option and then change it to "Do not allow"</li>
<li>Finally, just click on the "Update" button to save your changes.<br /><br />
3033
</li>
</ol>
<p>You can filter and bulk-remove the comments as well.</p>
<ul>
<li>navigate to the Dashboard &gt; Comments admin page.</li>
<li>Find the "Filter" option shown on the screenshot,</li>
<li>Select and remove all "Pings" comments<br /><br />
3035
</li>
</ul>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-disable-the-pingbacks-and-trackbacks/</guid>
                    </item>
				                    <item>
                        <title>How to hide the value of the custom field from the frontent.</title>
                        <link>https://wpdiscuz.com/community/f-a-q/how-to-hide-the-value-of-the-custom-field-from-the-frontent/</link>
                        <pubDate>Wed, 28 Sep 2022 11:30:17 +0000</pubDate>
                        <description><![CDATA[As far as you know wpDiscuz allows you to create custom comment fields, like phone number address, etc. 
You can simply select the field type and configure the options of the field as you w...]]></description>
                        <content:encoded><![CDATA[<p>As far as you know wpDiscuz allows you to create custom comment fields, like phone number address, etc. </p>
<p>You can simply select the field type and configure the options of the field as you wish. More info here: https://wpdiscuz.com/docs/wpdiscuz-7/getting-started/manage-comment-forms/comment-form-builder/</p>
2822
<p>For some reason, sometimes you may need to hide the submitted data from the frontend. For example, you've created the "Phone number" field and don't want to display the users' phone numbers in the comment section. In this case, all you need to do is uncheck the "Display on comment:" checkbox from the filed settings. </p>
<p>Please watch this small video instruction:</p>
2825
<p><span style="font-size: 10pt;color: #ff6600"><em>If you have some cache plugins installed on your website, please don't forget to delete the caches and press CTRL+F5(twice) on the frontend before checking.</em></span></p>
<p><em> For developers</em>, there is an advanced option to manage the custom comment field key. This <span style="color: #008080"><strong>meta key</strong> </span>is used to get submitted data and save it in the database (wp_commentmeta table).</p>
2826
<p>If you remove a custom field, it’ll also remove field data on website comments (front-end). The only way to revert back deleted values is to create an identical custom field with the same custom field <span style="color: #008080"><strong>meta key</strong></span>.</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/f-a-q/">Frequently Asked Questions</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/f-a-q/how-to-hide-the-value-of-the-custom-field-from-the-frontent/</guid>
                    </item>
							        </channel>
        </rss>
		