<?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 change member&#039;s display name? - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-change-members-display-name/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 17 May 2026 00:23:51 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: How to change member&#039;s display name?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-change-members-display-name/#post-108535</link>
                        <pubDate>Wed, 14 Feb 2024 15:31:33 +0000</pubDate>
                        <description><![CDATA[I figured it out after scouring through your code. Found the following filters. For anyone interested, here is my implementation inside my class.


add_filter( &#039;wpforo_get_member&#039;, [ $thi...]]></description>
                        <content:encoded><![CDATA[<p>I figured it out after scouring through your code. Found the following filters. For anyone interested, here is my implementation inside my class.</p>
<div>
<div>
<pre contenteditable="false">add_filter( 'wpforo_get_member', , 1000 );
add_filter( 'wpforo_user_display_name', , 1000, 2 );
add_filter( 'wpforo_member_nicename', , 1000, 2 );
...


/**
 * Forum member name on topics
 *
 * @param array $member
 * @return array
 */
public function forum_topics_member_name( $member ) {
    // My own function that gets the name how I want it to
    $member = $this-&gt;get_user_nickname( $member, false );
    return $member;
} // End forum_topics_member_name


/**
 * Forum member name on profile
 *
 * @param string $member
 * @param array $member
 * @return string
 */
public function forum_profile_member_name( $dname, $user ) {
    // My own function that gets the name how I want it to
    return $this-&gt;get_user_nickname( $user, false ); 
} // End forum_profile_member_name


/**
 * Remove forum nicename on profile
 *
 * @param string $member
 * @param array $member
 * @return string
 */
public function forum_profile_nicename( $nicename, $member ) {
    return '';
} // End forum_profile_nicename</pre>
<span><br /><br /></span></div>
</div>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>apos37</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-change-members-display-name/#post-108535</guid>
                    </item>
				                    <item>
                        <title>How to change member&#039;s display name?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-change-members-display-name/#post-108527</link>
                        <pubDate>Wed, 14 Feb 2024 01:15:33 +0000</pubDate>
                        <description><![CDATA[Is there a PHP hook that I can use to filter the member&#039;s display name? I need to display a different name based on their role.]]></description>
                        <content:encoded><![CDATA[<p>Is there a PHP hook that I can use to filter the member's display name? I need to display a different name based on their role.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>apos37</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-change-members-display-name/#post-108527</guid>
                    </item>
							        </channel>
        </rss>
		