<?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>
									Teething issues - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 12 Jul 2026 02:09:16 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29597</link>
                        <pubDate>Thu, 01 Aug 2019 05:43:08 +0000</pubDate>
                        <description><![CDATA[@criswI too have 1.62 installed yet do not get the any Login option for wpforo widgets or see a wpforo login widget.]]></description>
                        <content:encoded><![CDATA[<p>@crisw</p><p>I too have 1.62 installed yet do not get the any Login option for wpforo widgets or see a wpforo login widget.</p><p> </p><p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>nando4</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29597</guid>
                    </item>
				                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29596</link>
                        <pubDate>Thu, 01 Aug 2019 04:54:44 +0000</pubDate>
                        <description><![CDATA[ Posted by: @nando4  Posted by: @renee  Is there a way of embedding the login form on the first page if they are not logged in?Something I&#039;m interested in as well. Unu...]]></description>
                        <content:encoded><![CDATA[<p></p><blockquote data-userid="1559" data-postid="29591" data-mention="nando4"><div class="wpforo-post-quote-author"><strong> Posted by: @nando4 </strong></div><blockquote data-userid="8859" data-postid="29589" data-mention="renee"><div class="wpforo-post-quote-author"><strong> Posted by: @renee </strong></div><p> </p><p>Is there a way of embedding the login form on the first page if they are not logged in? <a href="http://prntscr.com/ompqig" target="true">http://prntscr.com/ompqig</a></p><p> </p></blockquote><p>Something I'm interested in as well. Unusally, function-templates.php has a wpforo login form widget defined. Problem is, it does not appear as an Available Widget in the  Widgets area to be able to be added to the wpforo sidebar or any other page.</p><p>@Sofy, maybe you can ask the developers why this is not appearing?</p><p> </p><pre>class wpForo_Widget_login_form extends WP_Widget {<br />	function __construct() {<br />		parent::__construct(<br />			'wpForo_Widget_login_form', // Base ID<br />			'wpForo Login Form',        // Name<br />			array( 'description' =&gt; 'wpForo login form' ) // Args<br />		);<br />	}<br />	public function widget( $args, $instance ) {<br />		echo $args; //This is a HTML content//<br />		echo '&lt;div id="wpf-widget-login" class="wpforo-widget-wrap"&gt;';<br />		if ( ! empty( $instance ) ) {<br />			echo $args . apply_filters( 'widget_title', $instance ). $args; //This is a HTML content//<br />		}<br />		echo '&lt;div class="wpforo-widget-content"&gt;';<br />		?&gt;<br />		&lt;?php if( is_user_logged_in() &amp;&amp; !empty(WPF()-&gt;current_user) ) : ?&gt;<br />			&lt;?php extract(WPF()-&gt;current_object, EXTR_OVERWRITE); extract(WPF()-&gt;current_user, EXTR_OVERWRITE); ?&gt;<br />			&lt;div class="wpforo-profile-wrap"&gt;<br />			&lt;div class="wpforo-profile-head"&gt;<br />			&lt;div class="h-header"&gt;<br />	      	&lt;?php if( WPF()-&gt;perm-&gt;usergroup_can('va') &amp;&amp; wpforo_feature('avatars') ): $rsz =''; ?&gt;<br />	        	&lt;div class="h-left"&gt;&lt;?php echo WPF()-&gt;member-&gt;get_avatar($userid, 'alt="'.esc_attr($display_name).'"', 150); ?&gt;&lt;/div&gt;<br />	        &lt;?php else: $rsz = ' style="margin-left:10px;"'; endif; ?&gt;<br />	        &lt;div class="h-right" &lt;?php echo $rsz; ?&gt;&gt;<br />	             &lt;div class="h-top"&gt;<br />	                &lt;div class="profile-display-name"&gt;<br />	                	&lt;?php WPF()-&gt;member-&gt;show_online_indicator($userid) ?&gt;<br />	                    &lt;?php echo $display_name ? esc_html($display_name) : esc_html(urldecode($user_nicename)) ?&gt;<br />	                &lt;/div&gt;<br />	                &lt;div class="profile-stat-data"&gt;<br />	                    &lt;div class="profile-stat-data-item"&gt;&lt;?php wpforo_phrase('Group') ?&gt;: &lt;?php wpforo_phrase($groupname) ?&gt;&lt;/div&gt;<br />	                    &lt;div class="profile-stat-data-item"&gt;&lt;?php wpforo_phrase('Joined') ?&gt;: &lt;?php esc_html(wpforo_date($user_registered, 'Y/m/d')) ?&gt;&lt;/div&gt;<br />	                &lt;/div&gt;<br />	            &lt;/div&gt;<br />	        &lt;/div&gt;<br />	      &lt;div class="wpf-clear"&gt;&lt;/div&gt;<br />	      &lt;/div&gt;<br />	      &lt;div class="h-footer wpfbg-2"&gt;<br />	      <br />	        &lt;div class="h-bottom"&gt;<br />	            &lt;?php WPF()-&gt;tpl-&gt;member_menu($userid) ?&gt;<br />	            &lt;a href="?wpforo=logout"&gt;&lt;?php wpforo_phrase('logout') ?&gt;&lt;/a&gt;<br />	            &lt;div class="wpf-clear"&gt;&lt;/div&gt;<br />	        &lt;/div&gt;<br />	      &lt;/div&gt;<br />	    &lt;/div&gt;<br />	      &lt;/div&gt;<br />	      <br />		&lt;?php else : ?&gt;<br />		<br />	        &lt;form name="wpflogin" action="" method="POST"&gt;<br />			  &lt;div class="wpforo-login-wrap"&gt;<br />			    &lt;div class="wpforo-login-content"&gt;<br />			     &lt;table class="wpforo-login-table wpfcl-1" width="100%" border="0" cellspacing="0" cellpadding="0"&gt;<br />			          &lt;tr class="wpfbg-9"&gt;<br />			            &lt;td class="wpf-login-label"&gt;<br />			            	&lt;p class="wpf-label wpfcl-1"&gt;&lt;?php wpforo_phrase('Username') ?&gt;:&lt;/p&gt;<br />			            &lt;/td&gt;<br />			            &lt;td class="wpf-login-field"&gt;&lt;input autofocus required="TRUE" type="text" name="log" class="wpf-login-text wpfw-60" /&gt;&lt;/td&gt;<br />			          &lt;/tr&gt;<br />			          &lt;tr class="wpfbg-9"&gt;<br />			            &lt;td class="wpf-login-label"&gt;<br />			            	&lt;p class="wpf-label wpfcl-1"&gt;&lt;?php wpforo_phrase('Password') ?&gt;:&lt;/p&gt;<br />			            &lt;/td&gt;<br />			            &lt;td class="wpf-login-field"&gt;&lt;input required="TRUE" type="password" name="pwd" class="wpf-login-text wpfw-60" /&gt;&lt;/td&gt;<br />			          &lt;/tr&gt;<br />			          &lt;tr class="wpfbg-9"&gt;&lt;td colspan="2" style="text-align: center;"&gt;&lt;?php do_action('login_form') ?&gt;&lt;/td&gt;&lt;/tr&gt;<br />			          &lt;tr class="wpfbg-9"&gt;<br />			            &lt;td class="wpf-login-label"&gt;&amp;nbsp;&lt;/td&gt;<br />			            &lt;td class="wpf-login-field"&gt;<br />			            &lt;p class="wpf-extra wpfcl-1"&gt;<br />			            &lt;input type="checkbox" value="1" name="rememberme" id="wpf-login-remember"&gt; <br />			            &lt;label for="wpf-login-remember"&gt;&lt;?php wpforo_phrase('Remember Me') ?&gt; |&lt;/label&gt;<br />			            &lt;a href="&lt;?php echo esc_url(wp_lostpassword_url(wpforo_get_request_uri())); ?&gt;" class="wpf-forgot-pass"&gt;&lt;?php wpforo_phrase('Lost your password?') ?&gt;&lt;/a&gt; <br />			            &lt;a href="&lt;?php echo esc_url( wpforo_home_url('?wpforo=register') ) ?&gt;"&gt;&lt;?php wpforo_phrase('register') ?&gt;&lt;/a&gt;<br />			            &lt;/p&gt;<br />			            &lt;input type="submit" name="wpforologin" value="&lt;?php wpforo_phrase('Sign In') ?&gt;" /&gt;<br />			            &lt;/td&gt;<br />			          &lt;/tr&gt;<br />			       &lt;/table&gt;<br />			  	&lt;/div&gt;<br />			  &lt;/div&gt;<br />			&lt;/form&gt;<br />			<br />		&lt;?php endif ?&gt;<br />		&lt;?php<br />		echo '&lt;/div&gt;&lt;/div&gt;';<br />		echo $args;<br />	}<br />	public function form( $instance ) {<br />		$title = isset( $instance ) ? $instance : 'Account';<br />		?&gt;<br />		&lt;p&gt;<br />			&lt;label&gt;&lt;?php _e('Title', 'wpforo'); ?&gt;:&lt;/label&gt; <br />			&lt;input class="widefat" name="&lt;?php echo esc_attr($this-&gt;get_field_name( 'title' )); ?&gt;" type="text" value="&lt;?php echo esc_attr( $title ); ?&gt;"&gt;<br />		&lt;/p&gt;<br />		&lt;?php <br />	}<br />	public function update( $new_instance, $old_instance ) {<br />		$instance = array();<br />		$instance = ( ! empty( $new_instance ) ) ? strip_tags( $new_instance ) : '';<br />		return $instance;<br />	}<br />} // widget wpforo login</pre></blockquote><p> </p><p></p><p> </p><blockquote data-userid="1559" data-postid="29591" data-mention="nando4"><div class="wpforo-post-quote-author"><strong> Posted by: @nando4 </strong></div><p>Something I'm interested in as well. Unusally, function-templates.php has a wpforo login form widget defined. Problem is, it does not appear as an Available Widget in the  Widgets area to be able to be added to the wpforo sidebar or any other page.</p><p><a title="Sofy" href="https://wpforo.com/community/profile/sofy/">@Sofy</a>, maybe you can ask the developers why this is not appearing?</p></blockquote><p>Hi @nando4 . </p><p>I have the latest Version 1.6.2 of wpForo, and I see the Login link in the Navigation Menu  widget and it is available.  Is this what you were looking for? </p><p>  </p><div id="wpfa-" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1564635284-20190731_ForumNavigationMenuCanBeAddedAsWidget.jpg" target="_blank" rel="noopener"> 20190731_ForumNavigationMenuCanBeAddedAsWidget.jpg</a></div><p><img class="alignnone" src="https://wpforo.com/wp-content/uploads/wpforo/default_attachments/1564635284-20190731_ForumNavigationMenuCanBeAddedAsWidget.jpg" alt="" width="auto" height="" /></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>CrisW</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29596</guid>
                    </item>
				                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29595</link>
                        <pubDate>Thu, 01 Aug 2019 04:33:35 +0000</pubDate>
                        <description><![CDATA[Posted by: @renee @sofy - thanks for getting back to me. STANDALONE LOGIN PAGEI have followed the private forum settings and now all is hidden. However, was hoping to offer a better usabilit...]]></description>
                        <content:encoded><![CDATA[<blockquote data-userid="8859" data-postid="29589" data-mention="renee"><div class="wpforo-post-quote-author"><strong> Posted by: @renee </strong></div><p>@sofy - thanks for getting back to me. </p><blockquote data-userid="4534" data-postid="29557" data-mention="sofy"><p>STANDALONE LOGIN PAGE</p></blockquote><p>I have followed the private forum settings and now all is hidden. However, was hoping to offer a better usability experience <strong>by having a login form on this page if they are not logged in</strong> ... having to click on login, is just that extra step. </p><p>Is there a way of embedding the login form on the first page if they are not logged in? <a href="http://prntscr.com/ompqig" target="true">http://prntscr.com/ompqig</a></p><blockquote data-userid="4534" data-postid="29557" data-mention="sofy"><p>TEMPLATE CUSTOMISATION</p></blockquote><p>I do not have a child theme and have copied the files into the theme folder, made changes and they are not showing on the frontend.</p><p><a href="http://prntscr.com/omprbt" target="true">http://prntscr.com/omprbt</a></p><p> </p></blockquote><p> </p><p>Hi @renee,</p><p>If your goal is to direct Forum Users to the Login Page if they are not logged in to your private forum, a much simpler solution is to <strong>create a Custom Link</strong> in your<strong> Main WP Menu</strong> with a Navigation Label : <em>Forums</em>, and then a <strong>Custom Link URL</strong> : to your <em>exact Login page</em>.</p><p>For example, if your Forum slug is</p><pre>https://www.your-website.com/forum/</pre><p>Then create a Website Main Menu <strong>Custom Link</strong></p><p><strong>On the URL:</strong> put the exact website link to your login page, example:</p><pre>https://www.your-website.com/forum/?wpforo=signin</pre><p>Then in the <strong>Navigation Label:</strong></p><pre>Forums</pre><p>then click <strong>Save Menu</strong>.</p><p>(See attached screenshot)</p><p>If you do it this way, you don't have to create a separate Forum Login page for your private forum. Once the user is logged in, this same Custom link just goes to the Forum itself, and then for those not logged in, the Main Menu Forum link will just go to the Login page. :-)</p><p>Just keep it simple. :-) Good luck and God bless you! :-)</p><div id="wpfa-" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1564634015-20190731_SimpleLoginLinkForPrivateForums.jpg" target="_blank" rel="noopener"> 20190731_SimpleLoginLinkForPrivateForums.jpg</a></div><p><img class="alignnone" src="https://wpforo.com/wp-content/uploads/wpforo/default_attachments/1564634015-20190731_SimpleLoginLinkForPrivateForums.jpg" alt="" width="auto" height="" /></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>CrisW</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29595</guid>
                    </item>
				                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29592</link>
                        <pubDate>Thu, 01 Aug 2019 00:36:16 +0000</pubDate>
                        <description><![CDATA[@nando4
Okay - but let&#039;s not less this override what I&#039;m trying to get solved 😀&nbsp;]]></description>
                        <content:encoded><![CDATA[<p>@nando4</p>
<p>Okay - but let's not less this override what I'm trying to get solved 😀&nbsp;</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>renee</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29592</guid>
                    </item>
				                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29591</link>
                        <pubDate>Thu, 01 Aug 2019 00:33:57 +0000</pubDate>
                        <description><![CDATA[Posted by: @renee  Is there a way of embedding the login form on the first page if they are not logged in?Something I&#039;m interested in as well. Unusally, function-templates.php has a wpforo l...]]></description>
                        <content:encoded><![CDATA[<blockquote data-userid="8859" data-postid="29589" data-mention="renee"><div class="wpforo-post-quote-author"><strong> Posted by: @renee </strong></div><p> </p><p>Is there a way of embedding the login form on the first page if they are not logged in? <a href="http://prntscr.com/ompqig" target="true">http://prntscr.com/ompqig</a></p><p> </p></blockquote><p>Something I'm interested in as well. Unusally, function-templates.php has a wpforo login form widget defined. Problem is, it does not appear as an Available Widget in the  Widgets area to be able to be added to the wpforo sidebar or any other page.</p><p>@Sofy, maybe you can ask the developers why this is not appearing?</p><p> </p><pre>class wpForo_Widget_login_form extends WP_Widget {<br />	function __construct() {<br />		parent::__construct(<br />			'wpForo_Widget_login_form', // Base ID<br />			'wpForo Login Form',        // Name<br />			array( 'description' =&gt; 'wpForo login form' ) // Args<br />		);<br />	}<br />	public function widget( $args, $instance ) {<br />		echo $args; //This is a HTML content//<br />		echo '&lt;div id="wpf-widget-login" class="wpforo-widget-wrap"&gt;';<br />		if ( ! empty( $instance ) ) {<br />			echo $args . apply_filters( 'widget_title', $instance ). $args; //This is a HTML content//<br />		}<br />		echo '&lt;div class="wpforo-widget-content"&gt;';<br />		?&gt;<br />		&lt;?php if( is_user_logged_in() &amp;&amp; !empty(WPF()-&gt;current_user) ) : ?&gt;<br />			&lt;?php extract(WPF()-&gt;current_object, EXTR_OVERWRITE); extract(WPF()-&gt;current_user, EXTR_OVERWRITE); ?&gt;<br />			&lt;div class="wpforo-profile-wrap"&gt;<br />			&lt;div class="wpforo-profile-head"&gt;<br />			&lt;div class="h-header"&gt;<br />	      	&lt;?php if( WPF()-&gt;perm-&gt;usergroup_can('va') &amp;&amp; wpforo_feature('avatars') ): $rsz =''; ?&gt;<br />	        	&lt;div class="h-left"&gt;&lt;?php echo WPF()-&gt;member-&gt;get_avatar($userid, 'alt="'.esc_attr($display_name).'"', 150); ?&gt;&lt;/div&gt;<br />	        &lt;?php else: $rsz = ' style="margin-left:10px;"'; endif; ?&gt;<br />	        &lt;div class="h-right" &lt;?php echo $rsz; ?&gt;&gt;<br />	             &lt;div class="h-top"&gt;<br />	                &lt;div class="profile-display-name"&gt;<br />	                	&lt;?php WPF()-&gt;member-&gt;show_online_indicator($userid) ?&gt;<br />	                    &lt;?php echo $display_name ? esc_html($display_name) : esc_html(urldecode($user_nicename)) ?&gt;<br />	                &lt;/div&gt;<br />	                &lt;div class="profile-stat-data"&gt;<br />	                    &lt;div class="profile-stat-data-item"&gt;&lt;?php wpforo_phrase('Group') ?&gt;: &lt;?php wpforo_phrase($groupname) ?&gt;&lt;/div&gt;<br />	                    &lt;div class="profile-stat-data-item"&gt;&lt;?php wpforo_phrase('Joined') ?&gt;: &lt;?php esc_html(wpforo_date($user_registered, 'Y/m/d')) ?&gt;&lt;/div&gt;<br />	                &lt;/div&gt;<br />	            &lt;/div&gt;<br />	        &lt;/div&gt;<br />	      &lt;div class="wpf-clear"&gt;&lt;/div&gt;<br />	      &lt;/div&gt;<br />	      &lt;div class="h-footer wpfbg-2"&gt;<br />	      <br />	        &lt;div class="h-bottom"&gt;<br />	            &lt;?php WPF()-&gt;tpl-&gt;member_menu($userid) ?&gt;<br />	            &lt;a href="?wpforo=logout"&gt;&lt;?php wpforo_phrase('logout') ?&gt;&lt;/a&gt;<br />	            &lt;div class="wpf-clear"&gt;&lt;/div&gt;<br />	        &lt;/div&gt;<br />	      &lt;/div&gt;<br />	    &lt;/div&gt;<br />	      &lt;/div&gt;<br />	      <br />		&lt;?php else : ?&gt;<br />		<br />	        &lt;form name="wpflogin" action="" method="POST"&gt;<br />			  &lt;div class="wpforo-login-wrap"&gt;<br />			    &lt;div class="wpforo-login-content"&gt;<br />			     &lt;table class="wpforo-login-table wpfcl-1" width="100%" border="0" cellspacing="0" cellpadding="0"&gt;<br />			          &lt;tr class="wpfbg-9"&gt;<br />			            &lt;td class="wpf-login-label"&gt;<br />			            	&lt;p class="wpf-label wpfcl-1"&gt;&lt;?php wpforo_phrase('Username') ?&gt;:&lt;/p&gt;<br />			            &lt;/td&gt;<br />			            &lt;td class="wpf-login-field"&gt;&lt;input autofocus required="TRUE" type="text" name="log" class="wpf-login-text wpfw-60" /&gt;&lt;/td&gt;<br />			          &lt;/tr&gt;<br />			          &lt;tr class="wpfbg-9"&gt;<br />			            &lt;td class="wpf-login-label"&gt;<br />			            	&lt;p class="wpf-label wpfcl-1"&gt;&lt;?php wpforo_phrase('Password') ?&gt;:&lt;/p&gt;<br />			            &lt;/td&gt;<br />			            &lt;td class="wpf-login-field"&gt;&lt;input required="TRUE" type="password" name="pwd" class="wpf-login-text wpfw-60" /&gt;&lt;/td&gt;<br />			          &lt;/tr&gt;<br />			          &lt;tr class="wpfbg-9"&gt;&lt;td colspan="2" style="text-align: center;"&gt;&lt;?php do_action('login_form') ?&gt;&lt;/td&gt;&lt;/tr&gt;<br />			          &lt;tr class="wpfbg-9"&gt;<br />			            &lt;td class="wpf-login-label"&gt;&amp;nbsp;&lt;/td&gt;<br />			            &lt;td class="wpf-login-field"&gt;<br />			            &lt;p class="wpf-extra wpfcl-1"&gt;<br />			            &lt;input type="checkbox" value="1" name="rememberme" id="wpf-login-remember"&gt; <br />			            &lt;label for="wpf-login-remember"&gt;&lt;?php wpforo_phrase('Remember Me') ?&gt; |&lt;/label&gt;<br />			            &lt;a href="&lt;?php echo esc_url(wp_lostpassword_url(wpforo_get_request_uri())); ?&gt;" class="wpf-forgot-pass"&gt;&lt;?php wpforo_phrase('Lost your password?') ?&gt;&lt;/a&gt; <br />			            &lt;a href="&lt;?php echo esc_url( wpforo_home_url('?wpforo=register') ) ?&gt;"&gt;&lt;?php wpforo_phrase('register') ?&gt;&lt;/a&gt;<br />			            &lt;/p&gt;<br />			            &lt;input type="submit" name="wpforologin" value="&lt;?php wpforo_phrase('Sign In') ?&gt;" /&gt;<br />			            &lt;/td&gt;<br />			          &lt;/tr&gt;<br />			       &lt;/table&gt;<br />			  	&lt;/div&gt;<br />			  &lt;/div&gt;<br />			&lt;/form&gt;<br />			<br />		&lt;?php endif ?&gt;<br />		&lt;?php<br />		echo '&lt;/div&gt;&lt;/div&gt;';<br />		echo $args;<br />	}<br />	public function form( $instance ) {<br />		$title = isset( $instance ) ? $instance : 'Account';<br />		?&gt;<br />		&lt;p&gt;<br />			&lt;label&gt;&lt;?php _e('Title', 'wpforo'); ?&gt;:&lt;/label&gt; <br />			&lt;input class="widefat" name="&lt;?php echo esc_attr($this-&gt;get_field_name( 'title' )); ?&gt;" type="text" value="&lt;?php echo esc_attr( $title ); ?&gt;"&gt;<br />		&lt;/p&gt;<br />		&lt;?php <br />	}<br />	public function update( $new_instance, $old_instance ) {<br />		$instance = array();<br />		$instance = ( ! empty( $new_instance ) ) ? strip_tags( $new_instance ) : '';<br />		return $instance;<br />	}<br />} // widget wpforo login</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>nando4</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29591</guid>
                    </item>
				                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29589</link>
                        <pubDate>Wed, 31 Jul 2019 22:59:35 +0000</pubDate>
                        <description><![CDATA[@sofy - thanks for getting back to me.&nbsp;

STANDALONE LOGIN PAGE

I have followed the private forum settings and now all is hidden. However, was hoping to offer a better usability exp...]]></description>
                        <content:encoded><![CDATA[<p>@sofy - thanks for getting back to me.&nbsp;</p>
<blockquote data-userid="4534" data-postid="29557" data-mention="sofy">
<p>STANDALONE LOGIN PAGE</p>
</blockquote>
<p>I have followed the private forum settings and now all is hidden. However, was hoping to offer a better usability experience by having a login form on this page if they are not logged in ... having to click on login, is just that extra step.&nbsp;</p>
<p>Is there a way of embedding the login form on the first page if they are not logged in? <a href="http://prntscr.com/ompqig" target="true">http://prntscr.com/ompqig</a></p>
<blockquote data-userid="4534" data-postid="29557" data-mention="sofy">
<p>TEMPLATE CUSTOMISATION</p>
</blockquote>
<p>I do not have a child theme and have copied the files into the theme folder, made changes and they are not showing on the frontend.</p>
<p><a href="http://prntscr.com/omprbt" target="true">http://prntscr.com/omprbt</a></p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>renee</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29589</guid>
                    </item>
				                    <item>
                        <title>RE: Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29557</link>
                        <pubDate>Wed, 31 Jul 2019 11:55:55 +0000</pubDate>
                        <description><![CDATA[Hi @renee,Thank you for using wpForo and for contacting us. STANDALONE LOGIN PAGEAs far as I understand you&#039;d like to set up a private forum. If so please read this articleCUSTOMISATIONProba...]]></description>
                        <content:encoded><![CDATA[<p>Hi @renee,</p><p>Thank you for using wpForo and for contacting us. </p><blockquote><p><strong>STANDALONE LOGIN PAGE</strong></p></blockquote><p>As far as I understand you'd like to set up a private forum. If so please read this article:</p><p><a href="https://gvectors.com/how-to-set-up-private-forum/">https://gvectors.com/how-to-set-up-private-forum/</a></p><blockquote><p><strong>TEMPLATE CUSTOMISATION</strong></p></blockquote><p>Probably you have a child theme? if so the files should be copied to the child theme folder. </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29557</guid>
                    </item>
				                    <item>
                        <title>Teething issues</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29537</link>
                        <pubDate>Wed, 31 Jul 2019 04:10:41 +0000</pubDate>
                        <description><![CDATA[Hi there,Have the plugin up and running beautifully with 2 of the add-ons but there&#039;s a couple of issues that I just can&#039;t work out. I&#039;ve scoured the forums to find the answers but can&#039;t see...]]></description>
                        <content:encoded><![CDATA[<p>Hi there,</p><p>Have the plugin up and running beautifully with 2 of the add-ons but there's a couple of issues that I just can't work out. I've scoured the forums to find the answers but can't seem to find answers that are working.</p><p><strong>STANDALONE LOGIN PAGE</strong></p><p>I don't want users to see any aspect of the forum unless logged in - I have tried setting the menu so that the forums is /%wpforo-login%/ but this does not show the login form. It also allows users to click on the member link and see all members which I don't want.</p><p>Therefore I need a login page before they arrive at the forum. Current settings:</p><ol><li><strong>wpForo Navigation</strong> Forums nav-item set to /%wpforo-login%/</li><li><strong>Custom Authorization URLS</strong> are default (i.e. nothing) in settings/members</li><li>Have <strong>Replace Login page URL to Forum Login page URL </strong>set as yes (makes no difference if set to no)</li></ol><p><strong>TEMPLATE CUSTOMISATION</strong></p><p>Am very familiar with theme development and wanting to make some customisations so followed the instructions in your <a href="https://wpforo.com/docs/root/forum-themes/theme-customization/" target="true">documentation</a> and copied the files from the plugin directory to my theme (../themes/my-theme/wpforo/layouts/3/forum.php.</p><p>No changes that I make come through in the front end - have cleared my cache multiple times (Ctrl + R).</p><p>Would love to get some help on these please.</p><p>Renee</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>renee</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/teething-issues/#post-29537</guid>
                    </item>
							        </channel>
        </rss>
		