<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BuddyPress.org | Tom | Mentions</title>
	<link>https://buddypress.org/members/zenimot/activity/mentions/</link>
	<atom:link href="https://buddypress.org/members/zenimot/activity/mentions/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed mentioning Tom.</description>
	<lastBuildDate>Mon, 06 Apr 2026 17:06:55 +0000</lastBuildDate>
	<generator>https://buddypress.org/?v=</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
	
						<item>
				<guid isPermaLink="false">ceb6792a9707bce7fd0d71e46c2fd9c7</guid>
				<title>Henry Wright replied to the topic Username problems in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/username-problems/#post-240271</link>
				<pubDate>Fri, 05 Jun 2015 11:32:00 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="https://buddypress.org/members/zenimot/" rel="nofollow ugc">@zenimot</a></p>
<p>If you wanted to, you could disallow spaces in usernames by validating the field during registration. This is how you&#8217;d do it:</p>
<p><code>function zenimot_validate_username() {</p>
<p>    $bp = buddypress();</p>
<p>    if ( strpos( $_POST[&#039;signup_username&#039;], &#039; &#039; ) !== false ) {<br />
        $bp-&gt;signup-&gt;errors[&#039;signup_username&#039;] = __( &#039;Spaces are not allowed&#039;,&hellip;</code><span class="activity-read-more" id="activity-read-more-421589"><a href="https://buddypress.org/support/topic/username-problems/#post-240271" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4b27bd024ce4887134a19f70564bb34b</guid>
				<title>Henry Wright replied to the topic Username problems in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/username-problems/#post-240271</link>
				<pubDate>Fri, 05 Jun 2015 11:32:00 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="https://buddypress.org/members/zenimot/" rel="nofollow ugc">@zenimot</a></p>
<p>If you wanted to, you could just remove spaces in usernames by validating the field during registration. This is how you&#8217;d do it:</p>
<p><code>function zenimot_validate_username() {</p>
<p>    $bp = buddypress();</p>
<p>    if ( strpos( $_POST[&#039;signup_username&#039;], &#039; &#039; ) !== false ) {<br />
        $bp-&gt;signup-&gt;errors[&#039;signup_username&#039;] = __( &#039;Spaces are not allowed&#039;,&hellip;</code><span class="activity-read-more" id="activity-read-more-421588"><a href="https://buddypress.org/support/topic/username-problems/#post-240271" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4fc0124ba907de7247995b05f04c4aad</guid>
				<title>Henry Wright replied to the topic Username problems in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/username-problems/#post-240271</link>
				<pubDate>Fri, 05 Jun 2015 11:32:00 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="https://buddypress.org/members/zenimot/" rel="nofollow ugc">@zenimot</a></p>
<p>If you wanted to, you could just remove spaces in usernames by validating the field during registration. This is how you&#8217;d do it:</p>
<p><code>function zenimot_validate_username() {<br />
    // Remove spaces from username.<br />
    $_POST[&#039;signup_username&#039;] = str_replace( &#039; &#039;, &#039;&#039;, $_POST[&#039;signup_username&#039;] );<br />
}<br />
add_action( &#039;bp_signup_pre_validate&#039;,&hellip;</code><span class="activity-read-more" id="activity-read-more-421583"><a href="https://buddypress.org/support/topic/username-problems/#post-240271" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b5a596fd4f6b0bf03ddff07ea8e1fe11</guid>
				<title>Henry Wright replied to the topic Username problems in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/username-problems/#post-240271</link>
				<pubDate>Fri, 05 Jun 2015 11:32:00 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="https://buddypress.org/members/zenimot/" rel="nofollow ugc">@zenimot</a></p>
<p>If you wanted to, you could enforce no spaces in usernames by validating the field during registration. This is how you&#8217;d do it:</p>
<p><code>function zenimot_validate_username() {<br />
    // Remove spaces from username.<br />
    $_POST[&#039;signup_username&#039;] = str_replace( &#039; &#039;, &#039;&#039;, $_POST[&#039;signup_username&#039;] );<br />
}<br />
add_action( &#039;bp_signup_pre_validate&#039;,&hellip;</code><span class="activity-read-more" id="activity-read-more-421581"><a href="https://buddypress.org/support/topic/username-problems/#post-240271" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d031379ae4ae236b796ca8ce91faa76e</guid>
				<title>Henry Wright replied to the topic Username problems in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/username-problems/#post-240265</link>
				<pubDate>Fri, 05 Jun 2015 10:01:00 +0000</pubDate>

									<content:encoded><![CDATA[<p>Hi <a href="https://buddypress.org/members/zenimot/" rel="nofollow ugc">@zenimot</a></p>
<p>See <a href="https://buddypress.trac.wordpress.org/ticket/5185" rel="nofollow ugc">5185</a> for some background and a discussion on the topic.</p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>