<?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>
									Redirect time load - wpDiscuz				            </title>
            <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 22 Jul 2026 22:41:02 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17326</link>
                        <pubDate>Thu, 22 Aug 2019 14:02:44 +0000</pubDate>
                        <description><![CDATA[Thank you kimchi very much.]]></description>
                        <content:encoded><![CDATA[<p>Thank you kimchi very much. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17326</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17325</link>
                        <pubDate>Thu, 22 Aug 2019 13:55:25 +0000</pubDate>
                        <description><![CDATA[Done]]></description>
                        <content:encoded><![CDATA[<p>Done.</p><p>https://wordpress.org/support/topic/great-plugin-amazing-support-83/</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>kimchi</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17325</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17318</link>
                        <pubDate>Thu, 22 Aug 2019 13:43:12 +0000</pubDate>
                        <description><![CDATA[@kimchiWe&#039;d really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.]]></description>
                        <content:encoded><![CDATA[<p>@kimchi</p><p>We'd really appreciate and be thankful if you <a href="https://wordpress.org/support/plugin/wpdiscuz/reviews/#new-post" rel="nofollow">leave a good review on plugin page. </a>This is the best way to say thank you to this project and support team.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17318</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17317</link>
                        <pubDate>Thu, 22 Aug 2019 13:42:25 +0000</pubDate>
                        <description><![CDATA[I appreciate it, thank you.]]></description>
                        <content:encoded><![CDATA[<p>I appreciate it, thank you. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>kimchi</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17317</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17311</link>
                        <pubDate>Thu, 22 Aug 2019 12:23:29 +0000</pubDate>
                        <description><![CDATA[@kimchi,Please follow the steps below:1. Open the class.WpdiscuzCore.php file, in /wp-content/plugins/wpdiscuz/ folder. 2. Find the redirect() function:    public function redirect() {      ...]]></description>
                        <content:encoded><![CDATA[<p>@kimchi,</p><p>Please follow the steps below:</p><p>1. Open the <span style="color: #339966"><em><strong>class.WpdiscuzCore.php</strong></em></span> file, in<em><strong> /wp-content/plugins/wpdiscuz/</strong></em> folder. </p><p>2. Find the redirect() function:</p><pre>    public function redirect() {<br />        $messageArray = array('code' =&gt; 0);<br />        $commentId = isset($_POST) ? intval($_POST) : 0;<br />        if ($this-&gt;optionsSerialized-&gt;redirectPage &amp;&amp; $commentId) {<br />            $comment = get_comment($commentId);<br />            if ($comment-&gt;comment_ID) {<br />                $userCommentCount = get_comments(array('author_email' =&gt; $comment-&gt;comment_author_email, 'count' =&gt; true));<br />                if ($userCommentCount == 1) {<br />                    $messageArray = 1;<br />                    $messageArray = get_permalink($this-&gt;optionsSerialized-&gt;redirectPage);<br />                }<br />            }<br />        }<br />        $this-&gt;commentsArgs = '';<br />        wp_die(json_encode($messageArray));<br />    }</pre><p>3. Replace with this one:</p><pre>    public function redirect() {<br />        $messageArray = array('code' =&gt; 0);<br />        $commentId = isset($_POST) ? intval($_POST) : 0;<br />        if ($this-&gt;optionsSerialized-&gt;redirectPage &amp;&amp; $commentId) {<br />            $comment = get_comment($commentId);<br />            if ($comment-&gt;comment_ID) {           <br />                    $messageArray = 1;<br />                    $messageArray = get_permalink($this-&gt;optionsSerialized-&gt;redirectPage);<br />	    }<br />        }<br />        $this-&gt;commentsArgs = '';<br />        wp_die(json_encode($messageArray));<br />    }</pre><p>Please note the changes will be overwritten after the update, you should keep the function somewhere locally, and change after the update.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17311</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17307</link>
                        <pubDate>Thu, 22 Aug 2019 10:49:43 +0000</pubDate>
                        <description><![CDATA[Thank you for taking the time to show me the solution. It works!Is is posible to have the redirect active for all the comments not only for the first timers?Thanks again]]></description>
                        <content:encoded><![CDATA[<p>Thank you for taking the time to show me the solution. It works!</p><p>Is is posible to have the redirect active for all the comments not only for the first timers?</p><p>Thanks again</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>kimchi</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17307</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17304</link>
                        <pubDate>Thu, 22 Aug 2019 10:10:34 +0000</pubDate>
                        <description><![CDATA[@kimchi,I&#039;m sorry, but there is no option to change the redirection time. You should change the time manually in wpDiscuz files.1. Please open the wpdiscuz.js file, in the /wp-content/plugin...]]></description>
                        <content:encoded><![CDATA[<p>@kimchi,</p><p>I'm sorry, but there is no option to change the redirection time. </p><p>You should change the time manually in wpDiscuz files.</p><p>1. Please open the <span style="color: #339966"><em><strong>wpdiscuz.js</strong></em></span> file, in the /wp-content/plugins/wpdiscuz/assets/js/ folder</p><p>2. Find the <span style="color: #ff0000"><em><strong>wpdiscuzRedirect</strong></em> </span>function, and change the 5000 value as you like</p><p><strong><span style="color: #ff0000">Warning</span>:</strong> Making changes to active plugins is not recommended. You should deactivate the plugin before making any changes.</p><p>3476</p><p>The changes will be lost after the update, however, we'll take into consideration to change the value in future updates.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17304</guid>
                    </item>
				                    <item>
                        <title>RE: Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17294</link>
                        <pubDate>Wed, 21 Aug 2019 15:57:21 +0000</pubDate>
                        <description><![CDATA[thank you]]></description>
                        <content:encoded><![CDATA[<p>thank you</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>kimchi</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17294</guid>
                    </item>
				                    <item>
                        <title>Redirect time load</title>
                        <link>https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17293</link>
                        <pubDate>Wed, 21 Aug 2019 15:56:44 +0000</pubDate>
                        <description><![CDATA[Hi, can you please tell me how can I adjust the time it take to redirect the first-time commenters to a page? Right now it takes a few second and I want to reduce it as much as posible. Than...]]></description>
                        <content:encoded><![CDATA[<p>Hi, can you please tell me how can I adjust the time it take to redirect the first-time commenters to a page? Right now it takes a few second and I want to reduce it as much as posible. Thanks</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpdiscuz-comment-plugin-support/">wpDiscuz</category>                        <dc:creator>kimchi</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpdiscuz-comment-plugin-support/redirect-time-load/#post-17293</guid>
                    </item>
							        </channel>
        </rss>
		