<?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>
									&#039;wpdiscuz_profile_url&#039; suport for return false - How-To and Troubleshooting				            </title>
            <link>https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 09 Jun 2026 20:50:58 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: &#039;wpdiscuz_profile_url&#039; suport for return false</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/#post-18422</link>
                        <pubDate>Mon, 28 Oct 2019 10:29:25 +0000</pubDate>
                        <description><![CDATA[Hello,thank you for the suggestion @elvinaIn my case I was asked to make the modification urgently so I had to mod the code myself, as follows if interested:replaced:echo $wpdiscuz-&gt;optio...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p><p>thank you for the suggestion @elvina</p><p>In my case I was asked to make the modification urgently so I had to mod the code myself, as follows if interested:</p><p><strong>replaced</strong>:</p><pre>echo $wpdiscuz-&gt;optionsSerialized-&gt;phrases . ' &lt;a href="' . $user_url . '"&gt;' . $wpdiscuz-&gt;helper-&gt;getCurrentUserDisplayName($currentUser) . '&lt;/a&gt; | ' . $logout;</pre><p><strong>with</strong>:</p><pre>if (false === $user_url) {<br />  echo $wpdiscuz-&gt;optionsSerialized-&gt;phrases . ' &lt;strong&gt;' . $wpdiscuz-&gt;helper-&gt;getCurrentUserDisplayName($currentUser) . '&lt;/strong&gt; | ' . $logout;<br />}<br />else {<br />  echo $wpdiscuz-&gt;optionsSerialized-&gt;phrases . ' &lt;a href="' . $user_url . '"&gt;' . $wpdiscuz-&gt;helper-&gt;getCurrentUserDisplayName($currentUser) . '&lt;/a&gt; | ' . $logout;<br />}<br />
</pre><p>And added a filter to 'wpdiscuz_profile_url' in functions.php returning false.</p><p>The reason I was asked to do so is that for users who have not written any articles yet - and for commenters, they are the majority - the url leads to a 404 page, that may be confusing and I didn't know any other kind of working url to replace it with.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>DrLightman</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/#post-18422</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;wpdiscuz_profile_url&#039; suport for return false</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/#post-18399</link>
                        <pubDate>Fri, 25 Oct 2019 11:18:37 +0000</pubDate>
                        <description><![CDATA[Hi @drlightman,There are two following options to hide the link of the username:1. You can use the following CSS code:div#wc_show_hide_loggedin_username a:first-child {    color: currentColo...]]></description>
                        <content:encoded><![CDATA[<p>Hi @drlightman,</p><p>There are two following options to hide the link of the username:</p><p>1. You can use the following CSS code:</p><pre>div#wc_show_hide_loggedin_username a:first-child {<br />    color: currentColor !important;<br />    cursor: not-allowed !important;<br />    text-decoration: none !important;<br />    pointer-events: none !important;<br />}</pre><p>The CSS code should be added in the Dashboard &gt; Comments &gt; Settings &gt; Styling &gt; "Custom CSS code" textarea. </p><p>2. or you can use the following JS code:</p><pre>jQuery( "#wc_show_hide_loggedin_username a:first-child " ).removeAttr("href");</pre><p>The js code you should add in your active them's js files.</p><p>In any case, please don't forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking to reload the updated CSS/JS files. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Elvina</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/#post-18399</guid>
                    </item>
				                    <item>
                        <title>&#039;wpdiscuz_profile_url&#039; suport for return false</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/#post-18385</link>
                        <pubDate>Thu, 24 Oct 2019 17:57:23 +0000</pubDate>
                        <description><![CDATA[Could be possibile that returning false with that filter wpdiscuz_profile_url we avoid the linking of the username totally at the beginning of the comment form?Thanks]]></description>
                        <content:encoded><![CDATA[<p>Could be possibile that returning <strong>false</strong> with that filter <em>wpdiscuz_profile_url</em> we avoid the linking of the username totally at the beginning of the comment form?</p><p>Thanks</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>DrLightman</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/wpdiscuz_profile_url-suport-for-return-false/#post-18385</guid>
                    </item>
							        </channel>
        </rss>
		