<?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>
									Linking to Custom Profile Page - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 17 Jun 2026 09:52:21 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Linking to Custom Profile Page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124810</link>
                        <pubDate>Wed, 14 May 2025 21:09:21 +0000</pubDate>
                        <description><![CDATA[@robert Yep - thanks, we tweaked it a bit but your recommendation worked !! Thanks.]]></description>
                        <content:encoded><![CDATA[@robert Yep - thanks, we tweaked it a bit but your recommendation worked !! Thanks.]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124810</guid>
                    </item>
				                    <item>
                        <title>RE: Linking to Custom Profile Page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124771</link>
                        <pubDate>Sun, 11 May 2025 11:09:13 +0000</pubDate>
                        <description><![CDATA[Hi @support ,
There are a lot of hooks in wpForo so you can change the profile URLs as you want.
You should use the wpforo_member_profile_url hook.
Example:
add_filter( &#039;wpforo_member_pr...]]></description>
                        <content:encoded><![CDATA[<p>Hi @support ,</p>
<p>There are a lot of hooks in wpForo so you can change the profile URLs as you want.</p>
<p>You should use the <em><span style="color: #993300">wpforo_member_profile_url</span></em> hook.</p>
<p>Example:</p>
<pre contenteditable="false">add_filter( 'wpforo_member_profile_url', 'my_custom_profile_url', 10, 3 );

function my_custom_profile_url( $url = '', $member = [], $template = 'profile' ){
     if( ! wpforo_is_admin() &amp;&amp; wpfval( $member, 'userid' ) ) {
          switch( $template ) {
               case 'account':
                     $url = home_url() . '/participant/account/';
               break;
               case 'activity':
                     $url = home_url() . '/participant/profile/';
               break;
               case 'subscriptions':
                     $url = home_url() . '/participant/subscriptions/';
               break;
               case 'profile':
                     $url = home_url() . '/participant/profile/';
               break;
          }		
     }
     return $url;
}</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124771</guid>
                    </item>
				                    <item>
                        <title>RE: Linking to Custom Profile Page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124740</link>
                        <pubDate>Thu, 08 May 2025 21:05:52 +0000</pubDate>
                        <description><![CDATA[@sofy We are writing our own code using wp snippet pro plug in. So it would be nice instead of defaulting specific plugins you could offer a textarea url hyperlink option in the dropdown.]]></description>
                        <content:encoded><![CDATA[@sofy We are writing our own code using wp snippet pro plug in. So it would be nice instead of defaulting specific plugins you could offer a textarea url hyperlink option in the dropdown.]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124740</guid>
                    </item>
				                    <item>
                        <title>RE: Linking to Custom Profile Page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124727</link>
                        <pubDate>Thu, 08 May 2025 10:19:17 +0000</pubDate>
                        <description><![CDATA[@support 
&quot;Please let us know which plugin you’re using to create the profile pages.]]></description>
                        <content:encoded><![CDATA[<p>@support </p>
<p>"Please let us know which plugin you’re using to create the profile pages.</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/linking-to-custom-profile-page/#post-124727</guid>
                    </item>
				                    <item>
                        <title>RE: Linking to Custom Profile Page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124719</link>
                        <pubDate>Thu, 08 May 2025 04:35:10 +0000</pubDate>
                        <description><![CDATA[It appears we maybe able to do it here?? Custom Redirection URLs after following actions:
For member profile, account and subscription pages use following URLs]]></description>
                        <content:encoded><![CDATA[<p>It appears we maybe able to do it here?? <label>Custom Redirection URLs after following actions:</label><span></span></p>
<p class="wpf-desc">For member profile, account and subscription pages use following URLs:<br />https://www.circlecitycampers.com/circlecitycampersblog/participant/profile/<br />https://www.circlecitycampers.com/circlecitycampersblog/participant/account/<br />https://www.circlecitycampers.com/circlecitycampersblog/participant/subscriptions/</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124719</guid>
                    </item>
				                    <item>
                        <title>Linking to Custom Profile Page</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124718</link>
                        <pubDate>Thu, 08 May 2025 04:29:48 +0000</pubDate>
                        <description><![CDATA[In the Member Profile setup you note: wpForo forum has a powerful user profile system which can be managed in this setting page. Here you can hide/show forum header and footer on profile pag...]]></description>
                        <content:encoded><![CDATA[<p><span style="font-size: 12pt">In the <strong><span style="color: #33cccc">Member Profile setup</span></strong> you note: wpForo forum has a powerful user profile system which can be managed in this setting page. Here you can hide/show forum header and footer on profile pages, manage profile components like avatars, member titles, nickname, URL structure, signature etc... In case you use BuddyPress or Ultimate Members plugins, you can switch forum profile page to the plugin profile page.</span><br /><br /><span style="font-size: 12pt;color: #ff0000"><strong>We have a custom profile page how do we set it as default instead of wpForo, BuddyPress, or Ultimate Members??</strong></span></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/linking-to-custom-profile-page/#post-124718</guid>
                    </item>
							        </channel>
        </rss>
		