<?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>
									Change login page to comment in wp-discuzz plugin - How-To and Troubleshooting				            </title>
            <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 22 Jul 2026 17:15:37 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-18062</link>
                        <pubDate>Fri, 04 Oct 2019 10:34:23 +0000</pubDate>
                        <description><![CDATA[@elvinaNow is perfect, thanks!!]]></description>
                        <content:encoded><![CDATA[<p>@elvina</p><p>Now is perfect, thanks!!</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Alfonso González</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-18062</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-18061</link>
                        <pubDate>Fri, 04 Oct 2019 10:22:10 +0000</pubDate>
                        <description><![CDATA[@alfonso-gonzalez,Please follow these steps below:1.Delete the CSS codes, added by you:#wc_show_hide_loggedin_username a {   color: #000 !important;}#wc_show_hide_loggedin_username a:hover {...]]></description>
                        <content:encoded><![CDATA[<p>@alfonso-gonzalez,</p><p>Please follow these steps below:</p><p><br />1.Delete the CSS codes, added by you:</p><pre>#wc_show_hide_loggedin_username a {<br />   color: #000 !important;<br />}<br />#wc_show_hide_loggedin_username a:hover {<br />   color: #000 !important;<br />}</pre><p>2. put following CSS code in the "Custom CSS code" textarea:</p><pre>wc_show_hide_loggedin_username a:first-child:hover{<br />   color: #000 !important;<br />}</pre><p>Please don't forget to delete all caches before checking.</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/change-login-page-to-comment-in-wp-discuzz-plugin/#post-18061</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-18058</link>
                        <pubDate>Fri, 04 Oct 2019 07:00:20 +0000</pubDate>
                        <description><![CDATA[@astghikHi im using your code:jQuery( &quot;#wc_show_hide_loggedin_username a:first-child &quot; ).removeAttr(&quot;href&quot;);to remove link but i have an issue:When im logged in, the &lt;a&gt; tag continues ...]]></description>
                        <content:encoded><![CDATA[<p>@astghik</p><p>Hi im using your code:</p><pre>jQuery( "#wc_show_hide_loggedin_username a:first-child " ).removeAttr("href");</pre><p>to remove link but i have an issue:</p><p>When im logged in, the &lt;a&gt; tag continues displaying but without link and the hover effect is displaying, so i change my css code to:</p><p> </p><p>#wc_show_hide_loggedin_username a {<br />color: #000 !important;<br />}</p><p>#wc_show_hide_loggedin_username a:hover {<br />color: #000 !important;<br />}</p><p>But the "Exit" link loose the hover effect too. 3589</p><p> </p><p>Is possible to remove &lt;a&gt; in username when is logged in??</p><p> </p><p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Alfonso González</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-18058</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17990</link>
                        <pubDate>Mon, 30 Sep 2019 12:14:03 +0000</pubDate>
                        <description><![CDATA[@chussmanUsing this code you&#039;ve just added class to the element:jQuery( &quot;.wpdiscuz-form-top-bar span a&quot; ).addClass( &quot;lrm-login&quot; )Now you&#039;ll need to add some CSS rules if you want to see the ...]]></description>
                        <content:encoded><![CDATA[<p>@chussman</p><p>Using this code you've just added class to the element:</p><pre>jQuery( ".wpdiscuz-form-top-bar span a" ).addClass( "lrm-login" )</pre><p>Now you'll need to add some CSS rules if you want to see the result.<br />For example:</p><pre>.lrm-login{<br />    color: red !important<br />}</pre><p>The CSS code should be added in te Dashboard &gt; Comments &gt; Settings &gt; Styling &gt; "Custom CSS Code" textarea.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17990</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17973</link>
                        <pubDate>Mon, 30 Sep 2019 07:33:46 +0000</pubDate>
                        <description><![CDATA[@astghikHi! Thanks for your response. Im registered a custom JS file on my website and it&#039;s loading fine, but i think the JS file is not correct.My JS file only has this content, I don&#039;t hav...]]></description>
                        <content:encoded><![CDATA[<p>@astghik</p><p>Hi! Thanks for your response. Im registered a custom JS file on my website and it's loading fine, but i think the JS file is not correct.</p><p>My JS file only has this content, <span lang="en">I don't have Javascript knowledge, sorry: </span></p><p> </p><p><em>add_action( 'wp_head', function () { ?&gt;</em><br /><em>&lt;script&gt;</em></p><p><em>jQuery( ".wpdiscuz-form-top-bar span a" ).addClass( "lrm-login" );</em></p><p><em>&lt;/script&gt;</em><br /><em>&lt;?php } );</em></p><p> </p><p>But is not doing anything</p><p> </p><p>:(</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>chussman</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17973</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17971</link>
                        <pubDate>Mon, 30 Sep 2019 07:19:41 +0000</pubDate>
                        <description><![CDATA[@chussman,You can follow this instruction]]></description>
                        <content:encoded><![CDATA[<p>@chussman,</p><p>You can follow this instruction:</p><p><a href="https://www.collectiveray.com/wp/tips/add-javascript-to-wordpress">https://www.collectiveray.com/wp/tips/add-javascript-to-wordpress</a></p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17971</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17970</link>
                        <pubDate>Mon, 30 Sep 2019 06:41:19 +0000</pubDate>
                        <description><![CDATA[@astghikHi, thanks for your response, but i don&#039;t know how to add JS code on my theme.Im using Avada theme, can you help me? Thanks!]]></description>
                        <content:encoded><![CDATA[<p>@astghik</p><p>Hi, thanks for your response, but i don't know how to add JS code on my theme.</p><p>Im using Avada theme, can you help me? Thanks!</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>chussman</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17970</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17916</link>
                        <pubDate>Thu, 26 Sep 2019 09:09:52 +0000</pubDate>
                        <description><![CDATA[@chussman,There are two following options:1. You can use the following CSS code:#wc_show_hide_loggedin_username a:first-child {   color: currentColor;   cursor: not-allowed;   text-decoratio...]]></description>
                        <content:encoded><![CDATA[<p>@chussman,</p><p>There are two following options:</p><p>1. You can use the following CSS code:</p><pre>#wc_show_hide_loggedin_username a:first-child {<br />   color: currentColor;<br />   cursor: not-allowed;<br />   text-decoration: none;<br />   pointer-events: none;<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>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17916</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17904</link>
                        <pubDate>Wed, 25 Sep 2019 16:40:00 +0000</pubDate>
                        <description><![CDATA[@astghikThanks so much, i will try to do it, but i have to looking for how to do it first. So, i have a new problem: When user is logged in, the username has a link to his profile, i&#039;ve disa...]]></description>
                        <content:encoded><![CDATA[<p>@astghik</p><p>Thanks so much, i will try to do it, but i have to looking for how to do it first.</p><p> </p><p>So, i have a new problem: When user is logged in, the username has a link to his profile, i've disabled profile url from plugin options but it doesn't works.</p><p> </p><p>Can you help me?</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>chussman</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17904</guid>
                    </item>
				                    <item>
                        <title>RE: Change login page to comment in wp-discuzz plugin</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17903</link>
                        <pubDate>Wed, 25 Sep 2019 15:00:33 +0000</pubDate>
                        <description><![CDATA[@chussman,Just add the following js code in your active theme&#039;s js files: jQuery( &quot;.wpdiscuz-form-top-bar span a&quot; ).addClass( &quot;myClass&quot; );]]></description>
                        <content:encoded><![CDATA[<p>@chussman,</p><p>Just add the following js code in your active theme's js files: </p><pre>jQuery( ".wpdiscuz-form-top-bar span a" ).addClass( "<span style="color: #ff0000"><em><strong>myClass</strong></em></span>" );</pre>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/change-login-page-to-comment-in-wp-discuzz-plugin/#post-17903</guid>
                    </item>
							        </channel>
        </rss>
		