<?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>
									How to show personal member fields in member account page - How-to and Troubleshooting				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 08 Mar 2026 13:55:44 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/paged/2/#post-81854</link>
                        <pubDate>Sun, 22 Jan 2023 17:24:56 +0000</pubDate>
                        <description><![CDATA[Ok sorry for confusion I found the way, so I examinated this pieces of code at the end of &quot;profile-home.php&quot; file:
    &lt;div class=&quot;wpf-profile-section wpf-mi-section&quot;&gt;
        &lt;di...]]></description>
                        <content:encoded><![CDATA[<p>Ok sorry for confusion I found the way, so I examinated this pieces of code at the end of "profile-home.php" file:</p>
<pre contenteditable="false">    &lt;div class="wpf-profile-section wpf-mi-section"&gt;
        &lt;div class="wpf-table"&gt;
            &lt;?php if( apply_filters('wpforo_profile_field_displaying_restriction', true) ): ?&gt;
                &lt;?php if( WPF()-&gt;usergroup-&gt;can( 'em', wpfval( WPF()-&gt;current_object, 'groupid' ) ) || wpfval( WPF()-&gt;current_object, 'posts' ) ): ?&gt;
                    &lt;?php wpforo_fields( $fields ); ?&gt;
                &lt;?php endif; ?&gt;
            &lt;?php else: ?&gt;
                &lt;?php wpforo_fields( $fields ); ?&gt;
            &lt;?php endif; ?&gt;
        &lt;/div&gt;
    &lt;/div&gt;</pre>
<p>As I could read, to show user fields need to have some posts published or the Group need to have 'em' permission that means "User Edit" permission.</p>
<p>So basically for "my custom group" member need to post something to show it, needn't to put the hands on code.</p>
<p>Thank you in any case.</p>
<p>Bye</p>
<p>Piercarlo</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Piero62</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/paged/2/#post-81854</guid>
                    </item>
				                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/paged/2/#post-81853</link>
                        <pubDate>Sun, 22 Jan 2023 16:05:25 +0000</pubDate>
                        <description><![CDATA[Ok understood but in this way the resctiction will apply in determinate group per single filed about what kinds of fields can see.
So for each group I need to set it.
With the same filter ...]]></description>
                        <content:encoded><![CDATA[<p>Ok understood but in this way the resctiction will apply in determinate group per single filed about what kinds of fields can see.</p>
<p>So for each group I need to set it.</p>
<p>With the same filter it could be done globally in this way:</p>
<pre contenteditable="false">add_filter('wpforo_profile_field_displaying_restriction', function(){
   $memberGroup = ;
   if($memberGroup === 'My Group'){
      return false;
  }
  else{
     return true;
  }
});</pre>
<p><em>it is possible ?</em></p>
<p>Thank you</p>
<p>Piercarlo</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Piero62</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/paged/2/#post-81853</guid>
                    </item>
				                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81852</link>
                        <pubDate>Sun, 22 Jan 2023 15:44:17 +0000</pubDate>
                        <description><![CDATA[I have mentioned above
Usergroups and Permissions

Can view member about me
Can view member website
etc.
etc.]]></description>
                        <content:encoded><![CDATA[<p></p>
<p>documentation link where those fields will be shown only for choosen groups of members</p>
<p></p>
<p>I have mentioned above</p>
<p><a href="https://wpforo.com/docs/root/members/usergroups-and-permissions/" target="_blank" rel="noopener"><span style="font-size: 18pt"><strong><span style="font-size: 14pt">Usergroups and Permissions</span></strong></span></a></p>
<ul>
<li>Can view member about me</li>
<li>Can view member website</li>
<li>etc.</li>
<li>etc.</li>
</ul>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81852</guid>
                    </item>
				                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81851</link>
                        <pubDate>Sun, 22 Jan 2023 15:40:13 +0000</pubDate>
                        <description><![CDATA[About Usergroup &amp; Permission settings I done previously and didn&#039;t works, but with snippet works.
But works for every profile, can you share a function snipet or a documentation link wh...]]></description>
                        <content:encoded><![CDATA[<p>About Usergroup &amp; Permission settings I done previously and didn't works, but with snippet works.</p>
<p>But works for every profile, can you share a function snipet or a documentation link where those fields will be shown only for choosen groups of members ?</p>
<p>I have wordpress developper skills, so if there would be developper docs I can handle it.</p>
<p>Thank you</p>
<p>Piercarlo</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Piero62</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81851</guid>
                    </item>
				                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81849</link>
                        <pubDate>Sun, 22 Jan 2023 15:22:16 +0000</pubDate>
                        <description><![CDATA[@piero62 
check &gt; Usergroups and Permissions

Can view member about me
Can view member website
etc.
etc.

if that doesn&#039;t help try this code snippet &gt; Display account informati...]]></description>
                        <content:encoded><![CDATA[<p>@piero62 </p>
<p>check &gt; <a href="https://wpforo.com/docs/root/members/usergroups-and-permissions/" target="_blank" rel="noopener">Usergroups and Permissions</a></p>
<ul>
<li>Can view member about me</li>
<li>Can view member website</li>
<li>etc.</li>
<li>etc.</li>
</ul>
<p>if that doesn't help try this code snippet &gt; <a href="https://wpforo.com/community/postid/76715/" target="_blank" rel="noopener">Display account information on profile tab</a></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81849</guid>
                    </item>
				                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81848</link>
                        <pubDate>Sun, 22 Jan 2023 15:06:30 +0000</pubDate>
                        <description><![CDATA[No, the span setting isn&#039;t the problem, the problem is that in my site all member profile, except the Admin group, dont display the personal fields in their accounts.
For example here in wp...]]></description>
                        <content:encoded><![CDATA[<p>No, the span setting isn't the problem, the problem is that in my site all member profile, except the Admin group, dont display the personal fields in their accounts.</p>
<p>For example here in wpForo, personal fields are displayed in mine not, I attached a picture to be clear.</p>
<p>Thank you for help</p>
<p>Piercarlo</p>
<div id="wpfa-0" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1674399990-mySite_account.png" target="_blank" title="mySite_account.png"><i class="fas fa-paperclip"></i>&nbsp;mySite_account.png</a></div>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Piero62</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81848</guid>
                    </item>
				                    <item>
                        <title>RE: How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81846</link>
                        <pubDate>Sun, 22 Jan 2023 13:17:41 +0000</pubDate>
                        <description><![CDATA[Hi @piero62
have you checked the Spam Protection settings &gt; Spam Protection
(Min number of posts ........)]]></description>
                        <content:encoded><![CDATA[<p>Hi @piero62</p>
<p>have you checked the Spam Protection settings &gt; <a href="https://wpforo.com/docs/wpforo-v2/settings/spam-protection/" target="_blank" rel="noopener">Spam Protection</a></p>
<p>(Min number of posts ........)</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81846</guid>
                    </item>
				                    <item>
                        <title>How to show personal member fields in member account page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81844</link>
                        <pubDate>Sun, 22 Jan 2023 11:06:08 +0000</pubDate>
                        <description><![CDATA[Hello,
I just installed wpForo in my stage site to try it.
I noted that in member account there is a lot of personal information fields.
But they are not publicly displayed, except for th...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p>
<p>I just installed wpForo in my stage site to try it.</p>
<p>I noted that in member account there is a lot of personal information fields.</p>
<p>But they are not publicly displayed, except for the Admin role.</p>
<p>What kind of setting I need to do to display those fields in certains group of users?</p>
<p>For example I created an "Author Group", and to that members I want to display fields like:</p>
<p>"About Me", "location", "Time Zone", "Web Site" etc.</p>
<p> </p>
<p>Thank you for help</p>
<p> </p>
<p>Piercarlo</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting</category>                        <dc:creator>Piero62</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-show-personal-member-fields-in-member-account-page/#post-81844</guid>
                    </item>
							        </channel>
        </rss>
		