<?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>
									wpForo Support Forum - Recent Posts				            </title>
            <link>https://wpforo.com/community/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Fri, 21 Aug 2026 10:24:10 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Hardcoded 1000-file wipe in Cache::check() — please add a filter</title>
                        <link>https://wpforo.com/community/bug-reports-wpforo-3/hardcoded-1000-file-wipe-in-cachecheck-please-add-a-filter/#post-139011</link>
                        <pubDate>Thu, 20 Aug 2026 12:14:46 +0000</pubDate>
                        <description><![CDATA[We have modified the check function to skip the file count function calls entirely when the max is set to 0 this avoids expensive CPU calls to count large directories which will not be clear...]]></description>
                        <content:encoded><![CDATA[<p>We have modified the check function to skip the file count function calls entirely when the max is set to 0 this avoids expensive CPU calls to count large directories which will not be cleared anyway.  <br /><br /></p>
<pre contenteditable="false">public function check( $directory ) {
		$directory = (string) $directory;
		$directory = wpforo_fix_dir_sep( $directory );
		$filecount = 0;
        $max = (int) apply_filters( 'wpforo_cache_dir_max_files', 1000, $directory );

        if($max === 0) {
            return;
        }

        if( class_exists( 'FilesystemIterator' ) &amp;&amp; is_dir( $directory ) ) {
			$fi        = new FilesystemIterator( $directory, FilesystemIterator::SKIP_DOTS );
			$filecount = iterator_count( $fi );
		}
		if( ! $filecount ) {
			$directory_ns = trim( $directory, DIRECTORY_SEPARATOR ) . DIRECTORY_SEPARATOR . '*';
			$directory_ws = DIRECTORY_SEPARATOR . trim( $directory, DIRECTORY_SEPARATOR ) . DIRECTORY_SEPARATOR . '*';
			$files        = glob( $directory_ns );
			if( empty( $files ) ) $files = glob( $directory_ws );
			$filecount = count( $files );
		}

        if ( $filecount &gt; $max ) {
            $this-&gt;clean_files( $directory );
        }
}</pre>
<p><br />Filter Used: <br /><br /></p>
<pre contenteditable="false">add_filter( 'wpforo_cache_dir_max_files', fn() =&gt; 0 );</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>sc89me</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/bug-reports-wpforo-3/hardcoded-1000-file-wipe-in-cachecheck-please-add-a-filter/#post-139011</guid>
                    </item>
				                    <item>
                        <title>RE: Forum posts are broken</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/forum-posts-are-broken/paged/2/#post-139006</link>
                        <pubDate>Wed, 19 Aug 2026 20:54:59 +0000</pubDate>
                        <description><![CDATA[I have a custom wp-foro plugin that handles a bunch of small things on wpForo on my site.I just added a module to that plugin that cleans up the wpforo quoting feature. Visually the user see...]]></description>
                        <content:encoded><![CDATA[<p>I have a custom wp-foro plugin that handles a bunch of small things on wpForo on my site.<br /><br />I just added a module to that plugin that cleans up the wpforo quoting feature. Visually the user seeing a cleaner interface, but when submitted the code changes to the actual wpForo format.</p>
<p><br />Basically this removes the potential BBCode issues and accidental breaking of HTML if a user edits within a quote. It also identifies the user your are quoting much better by using their name instead of their user ID.<br /><br />Unfortunately this is part of a larger custom plugin, so nothing I can really share. Note that when you edit a post, it will completely revert to the current bbcode system.</p>
<p>&nbsp;</p>
<p>Here is a post on my site explaining what I have done to my users.</p>
<p>https://gopherpucklive.com/forum/website-support-new-features/misc-stuff/paged/5/#post-144222</p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>Jupiter</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/forum-posts-are-broken/paged/2/#post-139006</guid>
                    </item>
				                    <item>
                        <title>Displaying &quot;Total Views&quot;</title>
                        <link>https://wpforo.com/community/general-discussions/displaying-total-views/#post-139005</link>
                        <pubDate>Wed, 19 Aug 2026 15:14:48 +0000</pubDate>
                        <description><![CDATA[We would like to display Total Views at the bottom in the row along side of: Forums Topics Posts Online. Is that an option? (We are not referring to the column individual topic/thread views)...]]></description>
                        <content:encoded><![CDATA[<p>We would like to display Total Views at the bottom in the row along side of: Forums Topics Posts Online. Is that an option? (We are not referring to the column individual topic/thread views) but the total of all of them. </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/displaying-total-views/#post-139005</guid>
                    </item>
				                    <item>
                        <title>RE: Auto Login user by using wpforo signin page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-139004</link>
                        <pubDate>Wed, 19 Aug 2026 14:17:54 +0000</pubDate>
                        <description><![CDATA[any idea how this could be fixed? It is just a modal dialog which asks the user to enter username and password and sending this information to wp-login.php. if credentials are correct user i...]]></description>
                        <content:encoded><![CDATA[<p>any idea how this could be fixed? It is just a modal dialog which asks the user to enter username and password and sending this information to wp-login.php. if credentials are correct user is logged in. As soon as I switch to wpforo login form it is only redirecting to the login form of wpforo but without auto login.</p>
<p>Thanks</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>domi1984</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-139004</guid>
                    </item>
				                    <item>
                        <title>Hardcoded 1000-file wipe in Cache::check() — please add a filter</title>
                        <link>https://wpforo.com/community/bug-reports-wpforo-3/hardcoded-1000-file-wipe-in-cachecheck-please-add-a-filter/#post-139003</link>
                        <pubDate>Wed, 19 Aug 2026 14:02:22 +0000</pubDate>
                        <description><![CDATA[IssueOn a large, busy forum, wpForo’s file cache under {cache_dir}/item/post regularly exceeds 1000 files. Cache::check() then deletes every file in that directory on the same frontend reque...]]></description>
                        <content:encoded><![CDATA[<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc"><strong><span class="font-semibold" data-streamdown="strong">Issue</span></strong><br />On a large, busy forum, wpForo’s file cache under<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">{cache_dir}/item/post</code><span> </span>regularly exceeds<span> </span><span class="font-semibold" data-streamdown="strong">1000 files</span>.<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">Cache::check()</code><span> </span>then deletes<span> </span><span class="font-semibold" data-streamdown="strong">every file in that directory</span><span> </span>on the same frontend request.</p>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc">That runs from<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk md-inline-variable-like">wp_footer</code><span> </span>→<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">WPF()-&gt;cache-&gt;create()</code><span> </span>when the template is<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">forum</code><span> </span>(forum index). After the wipe, traffic rebuilds the files, the folder hits 1000 again, and the wipe repeats (for us, every few minutes). PHP CPU spikes and the cache is not useful.</p>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc">We have thousands of posts. Each cached post is its own file (<code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">{postid}_{locale}</code>). A 1000-file cap is far below our working set. There is no setting or filter to change it.</p>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc">This is still present in<span> </span><span class="font-semibold" data-streamdown="strong">3.1.5</span>.<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk ui-s2xxs2 ui-7pq1vu ui-6tor67 ui-1ypdohk ui-l1v4ol ui-1sur9pj md-clickable-code md-inline-path-filename-like" role="button"><span class="ui-markdown__inline-path-prefix ui-1heor9g md-inline-path-prefix">classes/</span><span class="ui-markdown__inline-path-filename ui-1heor9g md-inline-path-filename">Cache.php</span></code><span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">check()</code>:</p>
<div class="composer-message-codeblock">
<div class="ui-code-block ui-1n2onr6 ui-1j66ri5 ui-14l7nz5 ui-1yf7rl7 ui-t4zf8z ui-zboxd6 ui-j3b58b ui-1vb4fzf ui-14gibnr ui-10a2chs ui-1u51yxl ui-178xt8z ui-13fuv20 ui-1aeic0j ui-s1s249 ui-32b0ac ui-141kqco ui-so031l ui-1q0q8m5 ui-17fyfba ui-e0pwq ui-19ypqd9 ui-1arpupx ui-6ikm8r ui-10wlt62 ui-1ua6jya ui-1k89b3v ui-8nuxf3">
<div class="ui-code-block-content ui-1n2onr6">
<div class="ui-scroll-area ui-1ekbvf6 ui-1logqu4 ui-1fx8caa ui-8ddqcf ui-1n2onr6 ui-6ikm8r ui-10wlt62 ui-rvj5dj ui-ypqxfk" data-scroll-padding="4" data-visibility="hover" data-direction="horizontal">
<div class="ui-scroll-area__viewport ui-175mniq ui-2lwn1j ui-mz0i5r ui-1pjcqnp ui-1rohswg ui-6ehuon ui-fk6m8 ui-w2csxc ui-10wlt62 ui-k8sdt9 ui-1duton ui-101ixbw ui-exgr1p ui-7p5m3t ui-y5w88m" data-native-scrollbar="none">
<div class="ui-scroll-area__content ui-9f619 ui-1us19tq ui-78zum5 ui-g7h5cd ui-1q0g3np ui-ezivpi ui-gqtt45 ui-1x1rfll">
<div class="ui-default-code ui-1wm8ruf ui-1lfj9qp ui-1ja60sm ui-1ua6jya ui-1m21r4p ui-cj37ws ui-13r5tfd ui-uve7l6 ui-1xpa7k ui-1rgtt3y ui-1uhho1l ui-o9w7m5 ui-17ewauw ui-1vakzcb ui-105xmc4 ui-1nsav61 ui-1jxofbz ui-947h55 ui-ta7kcf ui-1iagb1a ui-ez8t0j ui-i2wo5x ui-1iq2d2k ui-1qoclnz ui-k609h7 ui-1rqnq8e ui-19gwdp1 ui-1yfyyyg ui-1apie5d ui-dcvkk1 ui-code-block-default-code">
<div class="ui-1pshirs ui-awy1a7">
<div class="ui-78zum5 ui-10fesj9">
<div class="ui-default-code__line-content ui-98rzlu ui-1sdyfia ui-b3r6kr ui-lyipyv ui-wp9v23 ui-lgbajd ui-16b7oty ui-1n2onr6">
<pre contenteditable="false">if ( $filecount &gt; 1000 ) {
$this-&gt;clean_files( $directory );
}</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc">Page cache (WP Rocket etc.) is not in use on the forum; this is only wpForo’s on-disk cache.</p>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc"><strong><span class="font-semibold" data-streamdown="strong">Request</span></strong><br />Please make the limit filterable, default<span> </span><span class="font-semibold" data-streamdown="strong">1000</span>, pass<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">$directory</code>, and treat<span> </span><span class="font-semibold" data-streamdown="strong">0 as never wipe</span>:</p>
<div class="composer-message-codeblock">
<div class="ui-code-block ui-1n2onr6 ui-1j66ri5 ui-14l7nz5 ui-1yf7rl7 ui-t4zf8z ui-zboxd6 ui-j3b58b ui-1vb4fzf ui-14gibnr ui-10a2chs ui-1u51yxl ui-178xt8z ui-13fuv20 ui-1aeic0j ui-s1s249 ui-32b0ac ui-141kqco ui-so031l ui-1q0q8m5 ui-17fyfba ui-e0pwq ui-19ypqd9 ui-1arpupx ui-6ikm8r ui-10wlt62 ui-1ua6jya ui-1k89b3v ui-8nuxf3">
<div class="ui-code-block-content ui-1n2onr6">
<div class="ui-scroll-area ui-1ekbvf6 ui-1logqu4 ui-1fx8caa ui-8ddqcf ui-1n2onr6 ui-6ikm8r ui-10wlt62 ui-rvj5dj ui-ypqxfk" data-scroll-padding="4" data-visibility="hover" data-direction="horizontal">
<div class="ui-scroll-area__viewport ui-175mniq ui-2lwn1j ui-mz0i5r ui-1pjcqnp ui-1rohswg ui-6ehuon ui-fk6m8 ui-w2csxc ui-10wlt62 ui-k8sdt9 ui-1duton ui-101ixbw ui-exgr1p ui-7p5m3t ui-y5w88m" data-native-scrollbar="none">
<div class="ui-scroll-area__content ui-9f619 ui-1us19tq ui-78zum5 ui-g7h5cd ui-1q0g3np ui-ezivpi ui-gqtt45 ui-1x1rfll">
<div class="ui-default-code ui-1wm8ruf ui-1lfj9qp ui-1ja60sm ui-1ua6jya ui-1m21r4p ui-cj37ws ui-13r5tfd ui-uve7l6 ui-1xpa7k ui-1rgtt3y ui-1uhho1l ui-o9w7m5 ui-17ewauw ui-1vakzcb ui-105xmc4 ui-1nsav61 ui-1jxofbz ui-947h55 ui-ta7kcf ui-1iagb1a ui-ez8t0j ui-i2wo5x ui-1iq2d2k ui-1qoclnz ui-k609h7 ui-1rqnq8e ui-19gwdp1 ui-1yfyyyg ui-1apie5d ui-dcvkk1 ui-code-block-default-code">
<div class="ui-1pshirs ui-awy1a7">
<div class="ui-78zum5 ui-10fesj9">
<div class="ui-default-code__line-content ui-98rzlu ui-1sdyfia ui-b3r6kr ui-lyipyv ui-wp9v23 ui-lgbajd ui-16b7oty ui-1n2onr6">
<pre contenteditable="false">$max = (int) apply_filters( 'wpforo_cache_dir_max_files', 1000, $directory );
if ( $max &gt; 0 &amp;&amp; $filecount &gt; $max ) {
$this-&gt;clean_files( $directory );
}</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc">That stays backward compatible. Large forums can raise the cap or disable the wipe without forking the plugin.</p>
<p class="ui-markdown__paragraph ui-z80ra4 ui-uu7i3w ui-1nhcn8o ui-j7cesy ui-13faqbe ui-14l7nz5 ui-zboxd6 ui-19d5a1n ui-bpgzfc"><strong><span class="font-semibold" data-streamdown="strong">Optional follow-up</span></strong><br />Counting the directory with<span> </span><code class="ui-markdown__inline-code ui-rtu7ee ui-1i9v5mb ui-1hhlpkd ui-6lrnw6 ui-115g5cq ui-odjx36 ui-1wd3ewq ui-hayvgc ui-eb7xqv ui-15bjb6t ui-1lldw8n ui-1mzt3pk">FilesystemIterator</code><span> </span>on<span> </span><span class="font-semibold" data-streamdown="strong">every</span><span> </span>forum-index request is expensive once the folder is large, even if you never delete. A throttle (e.g. at most once per N minutes) would help. Full-directory unlink is also harsh vs deleting oldest files; the filter is the minimum we need please.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>sc89me</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/bug-reports-wpforo-3/hardcoded-1000-file-wipe-in-cachecheck-please-add-a-filter/#post-139003</guid>
                    </item>
				                    <item>
                        <title>RE: Placement des images</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/placement-des-images/#post-139001</link>
                        <pubDate>Wed, 19 Aug 2026 09:45:56 +0000</pubDate>
                        <description><![CDATA[Hi,
Please provide the URL where we can check the issue.
Also, please try to explain the issue you’re experiencing in English so we can better understand and investigate it.]]></description>
                        <content:encoded><![CDATA[<p class="PDq2pG_selectionAnchorContainer" data-start="0" data-end="52">Hi,</p>
<p class="PDq2pG_selectionAnchorContainer" data-start="0" data-end="52">Please provide the URL where we can check the issue.<span class="PDq2pG_selectionAnchor" aria-hidden="true"></span></p>
<p data-start="54" data-end="170" data-is-last-node="" data-is-only-node="">Also, please try to explain the issue you’re experiencing in English so we can better understand and investigate it.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/placement-des-images/#post-139001</guid>
                    </item>
				                    <item>
                        <title>Placement des images</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/placement-des-images/#post-139000</link>
                        <pubDate>Tue, 18 Aug 2026 17:13:07 +0000</pubDate>
                        <description><![CDATA[BonjourQuelle solution pour placer les images ou photos en haut des posts ?]]></description>
                        <content:encoded><![CDATA[<p>Bonjour<br />Quelle solution pour placer les images ou photos en haut des posts ?</p>
119]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>jean-marie</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/placement-des-images/#post-139000</guid>
                    </item>
				                    <item>
                        <title>RE: Auto Login user by using wpforo signin page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-138999</link>
                        <pubDate>Tue, 18 Aug 2026 14:07:46 +0000</pubDate>
                        <description><![CDATA[Hi,
Link is not possible as page is not yet live (password protected). It works well if I use standard wordpress login. My popup is just having a &lt;form which is sending the provided cred...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>Link is not possible as page is not yet live (password protected). It works well if I use standard wordpress login. My popup is just having a &lt;form which is sending the provided credentials as post to wp-login.php page. this page is redirecting after login is successfull to the page again. If i switch to login via wpforo it is ignoring my provided credentials and showing me the wp-foro login page instead.</p>
<p>Thanks</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>domi1984</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-138999</guid>
                    </item>
				                    <item>
                        <title>RE: Auto Login user by using wpforo signin page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-138998</link>
                        <pubDate>Mon, 17 Aug 2026 09:58:05 +0000</pubDate>
                        <description><![CDATA[Hi,
Thank you for the detailed explanation.
Could you please provide us with the URL of the website where we can see the issue? 
It would also be helpful to know which plugin or custom co...]]></description>
                        <content:encoded><![CDATA[<p class="isSelectedEnd"><span>Hi,</span></p>
<p class="isSelectedEnd"><span>Thank you for the detailed explanation.</span></p>
<p class="isSelectedEnd"><span>Could you please provide us with the URL of the website where we can see the issue? </span></p>
<p><span>It would also be helpful to know which plugin or custom code is responsible for the header popup/modal login, as this may be important for identifying the compatibility issue.</span></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-138998</guid>
                    </item>
				                    <item>
                        <title>Auto Login user by using wpforo signin page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-138997</link>
                        <pubDate>Sun, 16 Aug 2026 10:24:26 +0000</pubDate>
                        <description><![CDATA[Hello,
I changed from wp-login form to the wpforo signin page. Somehow now my header popup/modal login stopped working. It is passing the credentials via php post to the page. It looks like...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p>
<p>I changed from wp-login form to the wpforo signin page. Somehow now my header popup/modal login stopped working. It is passing the credentials via php post to the page. It looks like the wpforo login page does not work with provided credentialds. Any idea how this could be fixed? If i switch back to wordpress login logic it is logging me in.</p>
<p>&nbsp;</p>
<p>Thank you</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/"></category>                        <dc:creator>domi1984</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-wpforo-3/auto-login-user-by-using-wpforo-signin-page/#post-138997</guid>
                    </item>
							        </channel>
        </rss>
		