<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WPMU DEV Community &#187; Topic: wpmu and bbpress integration question</title>
		<link>http://premium.wpmudev.org/forums/topic/wpmu-and-bbpress-integration-question</link>
		<description>WPMU DEV Community &#187; Topic: wpmu and bbpress integration question</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 20:07:18 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://premium.wpmudev.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://premium.wpmudev.org/forums/rss/topic/wpmu-and-bbpress-integration-question" rel="self" type="application/rss+xml" />

		<item>
			<title>Ovidiu on "wpmu and bbpress integration question"</title>
			<link>http://premium.wpmudev.org/forums/topic/wpmu-and-bbpress-integration-question#post-34467</link>
			<pubDate>Tue, 13 Apr 2010 10:43:10 +0000</pubDate>
			<dc:creator>Ovidiu</dc:creator>
			<guid isPermaLink="false">34467@http://premium.wpmudev.org/forums/</guid>
			<description><p>so both should be working, even if the subscription confirmation via email is deactivated...<br />
mhhh....<br />
thx.
</p></description>
		</item>
		<item>
			<title>Barry on "wpmu and bbpress integration question"</title>
			<link>http://premium.wpmudev.org/forums/topic/wpmu-and-bbpress-integration-question#post-34435</link>
			<pubDate>Mon, 12 Apr 2010 23:43:06 +0000</pubDate>
			<dc:creator>Barry</dc:creator>
			<guid isPermaLink="false">34435@http://premium.wpmudev.org/forums/</guid>
			<description><p>either the wpmu_new_user or user_register actions should working as both actions are / should be being called on a new user registration.</p>
<p>The inside of the second function you listed is pretty much the same as the first (except it has a weird, unneeded step of unserialising an array before passing it to be reserialised).
</p></description>
		</item>
		<item>
			<title>Ovidiu on "wpmu and bbpress integration question"</title>
			<link>http://premium.wpmudev.org/forums/topic/wpmu-and-bbpress-integration-question#post-34434</link>
			<pubDate>Mon, 12 Apr 2010 23:09:54 +0000</pubDate>
			<dc:creator>Ovidiu</dc:creator>
			<guid isPermaLink="false">34434@http://premium.wpmudev.org/forums/</guid>
			<description><p>found a very similar plugin. the code looks different though, can anyone have a look and see if it looks like it could replace the above one?</p>
<p><code>function insertbbPressRole($insert_id) {<br />
	$capability = maybe_unserialize('a:1:{s:6:"member";b:1;}');<br />
	update_usermeta($insert_id,'bb_capabilities',$capability);<br />
}</p>
<p>add_action('user_register', 'insertbbPressRole');</code></p>
<p>or shall I just replace<br />
<code>add_action('wpmu_new_user', 'enable_bbpress_forum_capabilities');</code> from the first plugin with <code>add_action(''user_register', 'enable_bbpress_forum_capabilities');</code> ?
</p></description>
		</item>
		<item>
			<title>Ovidiu on "wpmu and bbpress integration question"</title>
			<link>http://premium.wpmudev.org/forums/topic/wpmu-and-bbpress-integration-question#post-34433</link>
			<pubDate>Mon, 12 Apr 2010 23:06:16 +0000</pubDate>
			<dc:creator>Ovidiu</dc:creator>
			<guid isPermaLink="false">34433@http://premium.wpmudev.org/forums/</guid>
			<description><p>I have been using a plugin to achieve this. The plugin's descriptions says:</p>
<p>When a user clicks on the activation link in the user regsitration email,<br />
user meta data is added to wp_usermeta to enable the 'member' role in bbPress.</p>
<p>Meanwhile I changed the registration process, with your plugin, that removes user email verification so users are no longer clicking/getting the activation link so they are now obviously not getting set up as members anymore.</p>
<p>Here is the plugin code:</p>
<p><code>function enable_bbpress_forum_capabilities( $user_id )  {<br />
	update_usermeta($user_id, 'bb_capabilities', array('member' =&#62; true));<br />
	return;<br />
}<br />
add_action('wpmu_new_user', 'enable_bbpress_forum_capabilities');<br />
</code><br />
now if I understand this right, all I need to find is another hook to hook into and replace wpmu_new_user, right?</p>
<p>any suggestions to get this code working again?
</p></description>
		</item>

	</channel>
</rss>
