<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	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>Thinking In Wordpress:-Delving deep into wordpress</title>
	<atom:link href="http://www.thinkinginwordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkinginwordpress.com</link>
	<description>Let us digg deep into the wordpress</description>
	<lastBuildDate>Sun, 28 Feb 2010 18:16:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get The List of all admins for a Blog on Wpmu</title>
		<link>http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/</link>
		<comments>http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 20:49:49 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Mu]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=318</guid>
		<description><![CDATA[While working with my most recent plugin, I had an  issue of finding all the admins of a blog on the wpmu network. after a couple of minutes, I implemented a small hack and It worked like charm.
So here you go.
Please Note, I have used User level, which is backward compatible and is there [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/09/remove-blog-slug-from-the-default-blog-of-wpmu-subdirectory-installation/' rel='bookmark' title='Permanent Link: Remove /blog slug from the default blog of wpmu subdirectory installation'>Remove /blog slug from the default blog of wpmu subdirectory installation</a> <small>Do you want to remove the &#8216;/blog&#8217; slug from post...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>While working with my most recent plugin, I had an  issue of finding all the admins of a blog on the wpmu network. after a couple of minutes, I implemented a small hack and It worked like charm.<br />
So here you go.<br />
Please Note, I have used User level, which is backward compatible and is there because of the legacy plugins support(according to codex), But this hack solves the problem to iterate through the Roles/capabilities.<br />
So here is the code.</p>
<pre class="brush: php">

function get_admin_users_for_blog($blog_id) {
global $wpdb;
$key=&quot;wp_&quot;.$blog_id.&quot;_user_level&quot;;
return $wpdb-&gt;get_results($wpdb-&gt;prepare(&quot;SELECT user_id from $wpdb-&gt;usermeta AS um WHERE um.meta_key =&#039;&quot;. $key.&quot;&#039; AND um.meta_value=10&quot;));
}

//and now call it

global $current_blog;

$admins=get_admin_users_for_blog($current_blog-&gt;blog_id);

//now you have $admins as an array of object, Just Iterate over it and do some stuff, well, I will just print out <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> 

foreach($admins as $admin)

echo &quot;ID:&quot;.$admin-&gt;ID;

///hmm you can use it for more productive reasons <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 
</pre>
<p>That&#8217;s the shortest code I could produce, I know, The better way will be to loop through the capabilities, but hacks are for you know <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;Title=Get The List of all admins for a Blog on Wpmu' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Get The List of all admins for a Blog on Wpmu&amp;url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;bm_description=Get The List of all admins for a Blog on Wpmu' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Get The List of all admins for a Blog on Wpmu&amp;uri=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/09/remove-blog-slug-from-the-default-blog-of-wpmu-subdirectory-installation/' rel='bookmark' title='Permanent Link: Remove /blog slug from the default blog of wpmu subdirectory installation'>Remove /blog slug from the default blog of wpmu subdirectory installation</a> <small>Do you want to remove the &#8216;/blog&#8217; slug from post...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updating the site</title>
		<link>http://www.thinkinginwordpress.com/2010/02/updating-the-site/</link>
		<comments>http://www.thinkinginwordpress.com/2010/02/updating-the-site/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:49:57 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=316</guid>
		<description><![CDATA[Thank you everyone for your comments suggestions and everything. Recently, I have not been able to keep this blog updated, but from the mid of Feb, expect me to update it regularly. 
So my question to you all, which of the plugins you would like to see updated. Other than the plugins I will go [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Thank you everyone for your comments suggestions and everything. Recently, I have not been able to keep this blog updated, but from the mid of Feb, expect me to update it regularly. </p>
<p>So my question to you all, which of the plugins you would like to see updated. Other than the plugins I will go into details of wp 3.0 and buddypress.<br />
Hope to see you guys here then <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks<br />
Brajesh</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;Title=Updating the site' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/02/updating-the-site/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Updating the site&amp;url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/02/updating-the-site/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;bm_description=Updating the site' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/02/updating-the-site/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Updating the site&amp;uri=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/02/updating-the-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Now parse Client side json with Wordpress</title>
		<link>http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/</link>
		<comments>http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 16:47:29 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[clien-side]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=309</guid>
		<description><![CDATA[If you are using wordpress 2.9+ , It is just so easy. You don&#8217;t have to worry about the evil thing called &#8220;eval&#8221; and you don&#8217;t have to worry about including JSON javascript parser with your theme/plugin.
Wordpress 2.9+ contains the json2.js from json.org.
So, just put a line in your plugin


wp_enqueue_script(&#34;json2&#34;);//must be put inside some function [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you are using wordpress 2.9+ , It is just so easy. You don&#8217;t have to worry about the evil thing called &#8220;eval&#8221; and you don&#8217;t have to worry about including JSON javascript parser with your theme/plugin.</p>
<p>Wordpress 2.9+ contains the <a title="json2.js" href="http://www.json.org/json2.js">json2.js</a> from json.org.</p>
<p>So, just put a line in your plugin</p>
<pre class="brush: php">

wp_enqueue_script(&quot;json2&quot;);//must be put inside some function called at wp_print_script
</pre>
<p>Or here is the complete code, how to enqueue the script.</p>
<pre class="brush: php">

add_action(&quot;wp_print_scripts&quot;,&quot;load_my_script&quot;);

function load_my_script(){

//en queue JSON2.js

wp_enqueue_script(&quot;json2&quot;);

}
</pre>
<p>and boy! wordpress will load the JSON parser, Now you are ready to use the JSON parser.</p>
<p>Here is more details about what you can do with the JSON parser</p>
<p><a title="Javascript JSON parser documentation " href="http://www.json.org/js.html">http://www.json.org/js.html</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;Title=Now parse Client side json with Wordpress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Now parse Client side json with Wordpress&amp;url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;bm_description=Now parse Client side json with Wordpress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with Wordpress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Now parse Client side json with Wordpress&amp;uri=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress</title>
		<link>http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/</link>
		<comments>http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 23:50:09 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[BuddyPress Themes]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddydev]]></category>
		<category><![CDATA[cosmic buddy]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=300</guid>
		<description><![CDATA[We have just released the Cosmic buddy Theme for buddypress.
Now you can turn your buddypress site to orkut style. Grab the free theme, and the addons from buddydev  here.
http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/
here is a screenshot.
You can check the demo here : http://bpthemes.buddydev.com/comicbuddy/
It requires wpmu 2.8+ and bp 1.1.x or above.
Hope you will enjoy this.  
   [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/09/buddypress-1-1-beta-is-out-its-time-to-adapt-to-new-theme-structure-and-refracted-codes/' rel='bookmark' title='Permanent Link: Buddypress 1.1 beta is out ,It&#8217;s time to adapt to new theme structure and refracted codes'>Buddypress 1.1 beta is out ,It&#8217;s time to adapt to new theme structure and refracted codes</a> <small>Yesterday,Andy formally released the buddypress 1.1 beta.I have been checking...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' rel='bookmark' title='Permanent Link: Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site'>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</a> <small>How about allowing your users to select a blog theme...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/' rel='bookmark' title='Permanent Link: Recently Created Blogs Widget for your wpmu/buddypress site'>Recently Created Blogs Widget for your wpmu/buddypress site</a> <small>well,An year ago,I showed ,how to list the recently created...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>We have just released the Cosmic buddy Theme for buddypress.</p>
<p>Now you can turn your buddypress site to orkut style. Grab the free theme, and the addons from buddydev  here.</p>
<p><a href="http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/">http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/</a></p>
<p>here is a screenshot.</p>
<div class="wp-caption aligncenter" style="width: 196px"><a href="http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/"><img title="Cosmic Buddy Theme" src="http://buddydev.com/files/2009/11/cosmicbuddy_theme2-186x300.png" alt="Cosmic buddy Theme" width="186" height="300" /></a><p class="wp-caption-text">Cosmic buddy Theme</p></div>
<p>You can check the demo here :<a href="http://bpthemes.buddydev.com/comicbuddy/"> http://bpthemes.buddydev.com/comicbuddy/</a></p>
<p>It requires wpmu 2.8+ and bp 1.1.x or above.</p>
<p>Hope you will enjoy this. <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;Title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress&amp;url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;bm_description=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress&amp;uri=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/09/buddypress-1-1-beta-is-out-its-time-to-adapt-to-new-theme-structure-and-refracted-codes/' rel='bookmark' title='Permanent Link: Buddypress 1.1 beta is out ,It&#8217;s time to adapt to new theme structure and refracted codes'>Buddypress 1.1 beta is out ,It&#8217;s time to adapt to new theme structure and refracted codes</a> <small>Yesterday,Andy formally released the buddypress 1.1 beta.I have been checking...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' rel='bookmark' title='Permanent Link: Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site'>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</a> <small>How about allowing your users to select a blog theme...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/' rel='bookmark' title='Permanent Link: Recently Created Blogs Widget for your wpmu/buddypress site'>Recently Created Blogs Widget for your wpmu/buddypress site</a> <small>well,An year ago,I showed ,how to list the recently created...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recently Created Blogs Widget for your wpmu/buddypress site</title>
		<link>http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/</link>
		<comments>http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:57:55 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Buddypress Plugins]]></category>
		<category><![CDATA[Mu plugins]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[list recent blogs]]></category>
		<category><![CDATA[recent blogs]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=294</guid>
		<description><![CDATA[well,An year ago,I showed ,how to list the recently created blogs using some php code.
Today,I had a chance to update the code and I created a the widget for ease of use.
Screenshots
You can get the widget from buddydev here (Yeh! It&#8217;s free   )
http://buddydev.com/plugins/buddypress-free-plugins/bpdev-recently-created-blogs-widget-list-the-most-recently-created-blogs-on-your-wordpress-mubuddypress-site/
I have provided the install and use information there 
and yeh! [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' rel='bookmark' title='Permanent Link: Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress'>Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress</a> <small>We have just released the Cosmic buddy Theme for buddypress....</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' rel='bookmark' title='Permanent Link: Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site'>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</a> <small>How about allowing your users to select a blog theme...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>well,An year ago,<a href="http://www.thinkinginwordpress.com/2009/01/showing-list-of-recently-created-blogs-on-wordpress-mu/">I showed ,how to list the recently created blogs using some php code</a>.<br />
Today,I had a chance to update the code and I created a the widget for ease of use.</p>
<h3>Screenshots</h3>
<div id="attachment_295" class="wp-caption aligncenter" style="width: 297px"><a href="http://www.thinkinginwordpress.com/wp-content/uploads/2009/12/widget-area.png"><img class="size-full wp-image-295" title="widget-area" src="http://www.thinkinginwordpress.com/wp-content/uploads/2009/12/widget-area.png" alt="Recently Created Blogs widget Option" width="287" height="283" /></a><p class="wp-caption-text">Recently Created Blogs widget Option</p></div>
<div id="attachment_296" class="wp-caption aligncenter" style="width: 286px"><a href="http://www.thinkinginwordpress.com/wp-content/uploads/2009/12/recent-blogs-with-description.png"><img class="size-full wp-image-296" title="recent-blogs-with-description" src="http://www.thinkinginwordpress.com/wp-content/uploads/2009/12/recent-blogs-with-description.png" alt="Recent blogs-with description" width="276" height="201" /></a><p class="wp-caption-text">Recent blogs-with description</p></div>
<div id="attachment_297" class="wp-caption aligncenter" style="width: 284px"><a href="http://www.thinkinginwordpress.com/wp-content/uploads/2009/12/recently-created-blogs-without-description.png"><img class="size-full wp-image-297" title="recently-created-blogs-without-description" src="http://www.thinkinginwordpress.com/wp-content/uploads/2009/12/recently-created-blogs-without-description.png" alt="Recently created blogs list without description" width="274" height="167" /></a><p class="wp-caption-text">Recently created blogs list without description</p></div>
<p>You can get the widget from buddydev here (Yeh! It&#8217;s free <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )<br />
<a href="http://buddydev.com/plugins/buddypress-free-plugins/bpdev-recently-created-blogs-widget-list-the-most-recently-created-blogs-on-your-wordpress-mubuddypress-site/">http://buddydev.com/plugins/buddypress-free-plugins/bpdev-recently-created-blogs-widget-list-the-most-recently-created-blogs-on-your-wordpress-mubuddypress-site/</a></p>
<p>I have provided the install and use information there <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
and yeh! Drop me a line here or on buddydev if you liked it or got any troubles.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;Title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Recently Created Blogs Widget for your wpmu/buddypress site&amp;url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;bm_description=Recently Created Blogs Widget for your wpmu/buddypress site' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;title=Recently Created Blogs Widget for your wpmu/buddypress site' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Recently Created Blogs Widget for your wpmu/buddypress site&amp;uri=http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' rel='bookmark' title='Permanent Link: Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress'>Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress</a> <small>We have just released the Cosmic buddy Theme for buddypress....</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' rel='bookmark' title='Permanent Link: Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site'>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</a> <small>How about allowing your users to select a blog theme...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/12/recently-created-blogs-widget-for-your-wpmubuddypress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweak your buddypress login form to redirect to the page user was viewing while login</title>
		<link>http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/</link>
		<comments>http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 22:10:48 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=284</guid>
		<description><![CDATA[If you are using buddypress,I am sure In most of the  cases you are going to have a login form on all the pages(I know It depends on theme ,but most of them have it in this way)
When a user logs in from an arbitrary page,what happens,If the login is successfull,the user is redirected to [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/11/tweaking-the-registration-link-at-wpmu-login-page-to-point-to-buddypress-registration-page/' rel='bookmark' title='Permanent Link: Tweaking the registration link at wpmu login page to point to buddypress registration page'>Tweaking the registration link at wpmu login page to point to buddypress registration page</a> <small>well,It is not that hard.If you are using buddypress and...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' rel='bookmark' title='Permanent Link: Redirect your users to their profile ,when the login to your buddypress site'>Redirect your users to their profile ,when the login to your buddypress site</a> <small>hey, want to redirect your users to their profile when...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you are using buddypress,I am sure In most of the  cases you are going to have a login form on all the pages(I know It depends on theme ,but most of them have it in this way)</p>
<p>When a user logs in from an arbitrary page,what happens,If the login is successfull,the user is redirected to site home page.Is it the behavior a user expects .Should It be considered a default behaviour.</p>
<p>Of course not,If I am logging from a page,I want to be on that page after login.</p>
<p>So ,here is a small tweak to make it happen.</p>
<p>Have a look at the code where the login form is put.</p>
<p>In case of default theme it is in bp-sn-parent/header.php</p>
<p>you will see something like this there</p>
<pre class="brush: php">

&lt;form name=&quot;login-form&quot; id=&quot;login-form&quot; action=&quot;&lt;?php echo site_url( &#039;wp-login.php&#039; ) ?&gt;&quot; method=&quot;post&quot;&gt;
&lt;input type=&quot;text&quot; name=&quot;log&quot; id=&quot;user_login&quot; value=&quot;&lt;?php _e( &#039;Username&#039;, &#039;buddypress&#039; ) ?&gt;&quot; onfocus=&quot;if (this.value == &#039;&lt;?php _e( &#039;Username&#039;, &#039;buddypress&#039; ) ?&gt;&#039;) {this.value = &#039;&#039;;}&quot; onblur=&quot;if (this.value == &#039;&#039;) {this.value = &#039;&lt;?php _e( &#039;Username&#039;, &#039;buddypress&#039; ) ?&gt;&#039;;}&quot; /&gt;
&lt;input type=&quot;password&quot; name=&quot;pwd&quot; id=&quot;user_pass&quot; value=&quot;&quot; /&gt;

&lt;input type=&quot;checkbox&quot; name=&quot;rememberme&quot; id=&quot;rememberme&quot; value=&quot;forever&quot; title=&quot;&lt;?php _e( &#039;Remember Me&#039;, &#039;buddypress&#039; ) ?&gt;&quot; /&gt;

&lt;input type=&quot;submit&quot; name=&quot;wp-submit&quot; id=&quot;wp-submit&quot; value=&quot;&lt;?php _e( &#039;Log In&#039;, &#039;buddypress&#039; ) ?&gt;&quot;/&gt;

&lt;?php if ( &#039;none&#039; != bp_get_signup_allowed() &amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp; &#039;blog&#039; != bp_get_signup_allowed() ) : ?&gt;
&lt;input type=&quot;button&quot; name=&quot;signup-submit&quot; id=&quot;signup-submit&quot; value=&quot;&lt;?php _e( &#039;Sign Up&#039;, &#039;buddypress&#039; ) ?&gt;&quot; onclick=&quot;location.href=&#039;&lt;?php echo bp_signup_page() ?&gt;&#039;&quot; /&gt;
&lt;?php endif; ?&gt;

&lt;input type=&quot;hidden&quot; name=&quot;redirect_to&quot; value=&quot;&lt;?php echo bp_root_domain() ?&gt;&quot; /&gt;
&lt;input type=&quot;hidden&quot; name=&quot;testcookie&quot; value=&quot;1&quot; /&gt;

&lt;?php do_action( &#039;bp_login_bar_logged_out&#039; ) ?&gt;
&lt;/form&gt;
</pre>
<p>So ,where to redirect is controllde by the line</p>
<pre class="brush: php">

&lt;input type=&quot;hidden&quot; name=&quot;redirect_to&quot; value=&quot;&lt;?php echo bp_root_domain() ?&gt;&quot; /&gt;
</pre>
<p>It is set to be redirected to the buddypress root site(you see the function bp_root_domain() )</p>
<p>Now let us make a small change there</p>
<p>replace the above one line in form code with this one</p>
<pre class="brush: php">

&lt;input type=&quot;hidden&quot; name=&quot;redirect_to&quot; value=&quot;&lt;?php echo $_SERVER[&#039;REQUEST_URI&#039;];?&gt;&quot; /&gt;
</pre>
<p>Great ,save the changes,upload to your server and yeh,try logging in from profile page or any other page.</p>
<p>It will redirect you back there.</p>
<p>Just another step towards better user experience <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I will love to hear from you ,did it work for you or not ?</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;Title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Tweak your buddypress login form to redirect to the page user was viewing while login&amp;url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;bm_description=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;title=Tweak your buddypress login form to redirect to the page user was viewing while login' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Tweak your buddypress login form to redirect to the page user was viewing while login&amp;uri=http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/11/tweaking-the-registration-link-at-wpmu-login-page-to-point-to-buddypress-registration-page/' rel='bookmark' title='Permanent Link: Tweaking the registration link at wpmu login page to point to buddypress registration page'>Tweaking the registration link at wpmu login page to point to buddypress registration page</a> <small>well,It is not that hard.If you are using buddypress and...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' rel='bookmark' title='Permanent Link: Redirect your users to their profile ,when the login to your buddypress site'>Redirect your users to their profile ,when the login to your buddypress site</a> <small>hey, want to redirect your users to their profile when...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</title>
		<link>http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/</link>
		<comments>http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 19:22:49 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Buddypress Plugins]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[activation]]></category>
		<category><![CDATA[autologin]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[registration]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=281</guid>
		<description><![CDATA[I hope you might have used my plugin BP Auto Activate Users and Blog at Signup
Now here is a pro version which will allow you to automatically login your user when they signup.
So,It eliminates one more step of login.
How it works
Account signups are auto activated at the time of signup and then the user is [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' rel='bookmark' title='Permanent Link: Redirect your users to their profile ,when the login to your buddypress site'>Redirect your users to their profile ,when the login to your buddypress site</a> <small>hey, want to redirect your users to their profile when...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' rel='bookmark' title='Permanent Link: Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site'>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</a> <small>How about allowing your users to select a blog theme...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I hope you might have used my plugin <a href="http://www.thinkinginwordpress.com/2009/10/autoactivate-users-and-blogs-at-buddypress-signup/">BP Auto Activate Users and Blog at Signup</a><br />
Now here is a pro version which will allow you to automatically login your user when they signup.</p>
<p>So,It eliminates one more step of login.</p>
<h3>How it works</h3>
<p>Account signups are auto activated at the time of signup and then the user is automatically logged in and redirected to his/her profile.</p>
<p>Checkout more details/screenshots here on buddydev.com<br />
<a href="http://buddydev.com/plugins/buddypress-premium-plugins/plugin-bp-auto-activate-auto-login-redirect-to-profile-automatically-activate-your-new-user-signuplog-them-in-and-redirect-to-their-buddypress-profile-on-signup/">http://buddydev.com/plugins/buddypress-premium-plugins/plugin-bp-auto-activate-auto-login-redirect-to-profile-automatically-activate-your-new-user-signuplog-them-in-and-redirect-to-their-buddypress-profile-on-signup/</a></p>
<p>Please note this is a premium plugin,if you are looking for a free alternative ,check my other plugin <a href="http://www.thinkinginwordpress.com/2009/10/autoactivate-users-and-blogs-at-buddypress-signup/">BP Auto Activate Users and Blog at Signup</a></p>
<p>happy Networking with buddypress <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;Title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site&amp;url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;bm_description=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;title=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site&amp;uri=http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' rel='bookmark' title='Permanent Link: Redirect your users to their profile ,when the login to your buddypress site'>Redirect your users to their profile ,when the login to your buddypress site</a> <small>hey, want to redirect your users to their profile when...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' rel='bookmark' title='Permanent Link: Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site'>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</a> <small>How about allowing your users to select a blog theme...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logout Redirect Plugin for wordpress mu/buddypress</title>
		<link>http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/</link>
		<comments>http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 02:24:07 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Buddypress Plugins]]></category>
		<category><![CDATA[Mu plugins]]></category>
		<category><![CDATA[Wordpress Mu]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[logout]]></category>
		<category><![CDATA[logout redirect]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=279</guid>
		<description><![CDATA[Here is our another free plugin  bpdev-logout-redirect for buddypress and wordpress mu.
We developed ,It as a complementary plugin for our another plugin which was used for login redirect,so went ahead and created this one too.
What It Does

For standalone wpmu,It will redirect user to the main site on logout(It does not matter ,from where ,they [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' rel='bookmark' title='Permanent Link: Redirect your users to their profile ,when the login to your buddypress site'>Redirect your users to their profile ,when the login to your buddypress site</a> <small>hey, want to redirect your users to their profile when...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' rel='bookmark' title='Permanent Link: Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site'>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</a> <small>I hope you might have used my plugin BP Auto...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' rel='bookmark' title='Permanent Link: Tweak your buddypress login form to redirect to the page user was viewing while login'>Tweak your buddypress login form to redirect to the page user was viewing while login</a> <small>If you are using buddypress,I am sure In most of...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Here is our another free plugin<strong>  bpdev-logout-redirect for buddypress and wordpress mu</strong>.</p>
<p>We developed ,It as a complementary plugin for our another plugin which was used for<a href="http://buddydev.com/buddypress/bp-redirect-to-profile-plugin-redirect-users-to-their-profile-on-login-on-buddypress-sites/"> login redirect</a>,so went ahead and created this one too.</p>
<h3>What It Does</h3>
<ul>
<li>For standalone wpmu,It will redirect user to the main site on logout(It does not matter ,from where ,they are logging out)</li>
<li>For buddypress, you might be knowing,It is already there ,if a user logs in from front end,It ads extra functionality ,that even if a user logs out from backend/dashboard ,he will be redirected to the mainsite home page.</li>
</ul>
<p>Easy and Cool! right.</p>
<p>Now grab it from here,it is absolutely free and licensed under GPL <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://buddydev.com/plugins/logout-redirect-plugin-for-wordpress-mu-buddypress/">http://buddydev.com/plugins/logout-redirect-plugin-for-wordpress-mu-buddypress/</a></p>
<p>and yeh,keep yourself Tuned up for more exciting stuff,as This is going to be one plugin a day for us <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;Title=Logout Redirect Plugin for wordpress mu/buddypress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Logout Redirect Plugin for wordpress mu/buddypress&amp;url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;bm_description=Logout Redirect Plugin for wordpress mu/buddypress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;title=Logout Redirect Plugin for wordpress mu/buddypress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Logout Redirect Plugin for wordpress mu/buddypress&amp;uri=http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' rel='bookmark' title='Permanent Link: Redirect your users to their profile ,when the login to your buddypress site'>Redirect your users to their profile ,when the login to your buddypress site</a> <small>hey, want to redirect your users to their profile when...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' rel='bookmark' title='Permanent Link: Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site'>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</a> <small>I hope you might have used my plugin BP Auto...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' rel='bookmark' title='Permanent Link: Tweak your buddypress login form to redirect to the page user was viewing while login'>Tweak your buddypress login form to redirect to the page user was viewing while login</a> <small>If you are using buddypress,I am sure In most of...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site</title>
		<link>http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/</link>
		<comments>http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 21:30:38 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Buddypress Plugins]]></category>
		<category><![CDATA[Mu plugins]]></category>
		<category><![CDATA[Wordpress Mu]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[blog signup]]></category>
		<category><![CDATA[select theme]]></category>
		<category><![CDATA[theme at signup]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=273</guid>
		<description><![CDATA[How about allowing your users to select a blog theme while they signup or create a new blog on your buddypress/wordpress mu powered site.
It will be a cool thing won&#8217;t it.
Well,here is a plugin &#8220;bpdev select blog theme at blog signup&#8221; which allows this.
Download the plugin from here http://buddydev.com/plugins/buddypress-premium-plugins/allow-users-to-select-a-blog-theme-while-signing-upcreating-a-blog-on-your-buddypress-powered-social-network/
Note:this is a premium plugin ,and you [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' rel='bookmark' title='Permanent Link: Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site'>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</a> <small>I hope you might have used my plugin BP Auto...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/10/autoactivate-users-and-blogs-at-buddypress-signup/' rel='bookmark' title='Permanent Link: Autoactivate Users and Blogs at Buddypress Signup'>Autoactivate Users and Blogs at Buddypress Signup</a> <small>Update: 19/01/2009 This plugin is not working currently as pointed...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/07/allow-users-to-set-their-own-password-at-buddypress-registration-page/' rel='bookmark' title='Permanent Link: Allow Users to set their own Password at Buddypress Registration page'>Allow Users to set their own Password at Buddypress Registration page</a> <small>Here is the plugin Cosmic BP User Signup Password to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>How about allowing your users to select a blog theme while they signup or create a new blog on your buddypress/wordpress mu powered site.<br />
It will be a cool thing won&#8217;t it.<br />
Well,here is a plugin &#8220;<a href="http://buddydev.com/plugins/buddypress-premium-plugins/allow-users-to-select-a-blog-theme-while-signing-upcreating-a-blog-on-your-buddypress-powered-social-network/">bpdev select blog theme at blog signup</a>&#8221; which allows this.</p>
<p>Download the plugin from here <a href="http://buddydev.com/plugins/buddypress-premium-plugins/allow-users-to-select-a-blog-theme-while-signing-upcreating-a-blog-on-your-buddypress-powered-social-network/">http://buddydev.com/plugins/buddypress-premium-plugins/allow-users-to-select-a-blog-theme-while-signing-upcreating-a-blog-on-your-buddypress-powered-social-network/</a><br />
Note:this is a premium plugin ,and you must be a member of bpdev premium(which costs only $30 for 3 months) to access this plugin and many other.</p>
<p><strong>screen shots</strong></p>
<div class="wp-caption aligncenter" style="width: 365px"><a href="http://buddydev.com/files/2009/11/bp-registration-screenshot.png"><img title="buddypress registration screen" src="http://buddydev.com/files/2009/11/bp-registration-screenshot.png" alt="Buddypress registration screen" width="355" height="502" /></a><p class="wp-caption-text">Buddypress registration screen</p></div>
<p><strong>How it works:</strong><br />
You simply activate it site wide and take the nap <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  and It will do the rest.hehe ,well nothing of that sort,but you need to install this plugin and as a site admin and you are done.</p>
<p>It will list all the allowed themes(in wpmu you allow themes for user from SiteAdmin-&gt;Themes) ,to the user when he/she is signing up for a new account or is an existing user and creating a new blog.</p>
<p>This selected theme will be automatically get activated on the new blog ,when user account is activated(In case of signup) or the new blog is created(for existing site users).<br />
So,what do you think,Isn&#8217;t it cool!</p>
<p>Go and grab the plugin form <a href="http://buddydev.com/plugins/buddypress-premium-plugins/allow-users-to-select-a-blog-theme-while-signing-upcreating-a-blog-on-your-buddypress-powered-social-network/">here</a></p>
<p>and do let me know ,what do you think about this <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>happy networking.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;Title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site&amp;url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;bm_description=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;title=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Allow Users to select  blog theme while they signup for a blog or create a new blog on your wordpress mu/buddypress powered site&amp;uri=http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' rel='bookmark' title='Permanent Link: Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site'>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</a> <small>I hope you might have used my plugin BP Auto...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/10/autoactivate-users-and-blogs-at-buddypress-signup/' rel='bookmark' title='Permanent Link: Autoactivate Users and Blogs at Buddypress Signup'>Autoactivate Users and Blogs at Buddypress Signup</a> <small>Update: 19/01/2009 This plugin is not working currently as pointed...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/07/allow-users-to-set-their-own-password-at-buddypress-registration-page/' rel='bookmark' title='Permanent Link: Allow Users to set their own Password at Buddypress Registration page'>Allow Users to set their own Password at Buddypress Registration page</a> <small>Here is the plugin Cosmic BP User Signup Password to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/11/allow-users-to-select-blog-theme-while-they-signup-for-a-blog-or-create-a-new-blog-on-your-wordpress-mubuddypress-powered-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Redirect your users to their profile ,when the login to your buddypress site</title>
		<link>http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/</link>
		<comments>http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 22:18:39 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Buddypress Plugins]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddypress login]]></category>
		<category><![CDATA[login redirect]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=261</guid>
		<description><![CDATA[hey, want to redirect your users to their profile when the login to your wordpress mu/buddypress site.
Well,It&#8217;s pretty cool and easy.and here is a plugin &#8220;bp redirect to profile&#8221; which allows you to redirect your users to their profile on login.
Check it here
http://buddydev.com/buddypress/bp-redirect-to-profile-plugin-redirect-users-to-their-profile-on-login-on-buddypress-sites/
and yeh,let me know in comments here or on the above link,whether it [...]


Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' rel='bookmark' title='Permanent Link: Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site'>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</a> <small>I hope you might have used my plugin BP Auto...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' rel='bookmark' title='Permanent Link: Tweak your buddypress login form to redirect to the page user was viewing while login'>Tweak your buddypress login form to redirect to the page user was viewing while login</a> <small>If you are using buddypress,I am sure In most of...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>hey, want to redirect your users to their profile when the login to your wordpress mu/buddypress site.</p>
<p>Well,It&#8217;s pretty cool and easy.and here is a plugin &#8220;bp redirect to profile&#8221; which allows you to redirect your users to their profile on login.</p>
<p>Check it here</p>
<p><a href="http://buddydev.com/buddypress/bp-redirect-to-profile-plugin-redirect-users-to-their-profile-on-login-on-buddypress-sites/">http://buddydev.com/buddypress/bp-redirect-to-profile-plugin-redirect-users-to-their-profile-on-login-on-buddypress-sites/</a></p>
<p>and yeh,let me know in comments here or on the above link,whether it worked for you or not<br />
-:)</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;Title=Redirect your users to their profile ,when the login to your buddypress site' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Redirect your users to their profile ,when the login to your buddypress site&amp;url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;bm_description=Redirect your users to their profile ,when the login to your buddypress site' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;title=Redirect your users to their profile ,when the login to your buddypress site' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Redirect your users to their profile ,when the login to your buddypress site&amp;uri=http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (38.107.191.90) )</small> ccwp100xcfgdfghjkl764532sdfb

<p>Related posts:<ol><li><a href='http://www.thinkinginwordpress.com/2009/12/make-your-users-automatically-logged-in-and-redirect-them-to-their-profile-when-they-create-their-account-on-your-buddypress-powered-site/' rel='bookmark' title='Permanent Link: Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site'>Make your users automatically logged in and redirect them to their profile  when they create their account on your buddypress powered site</a> <small>I hope you might have used my plugin BP Auto...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/11/logout-redirect-plugin-for-wordpress-mubuddypress/' rel='bookmark' title='Permanent Link: Logout Redirect Plugin for wordpress mu/buddypress'>Logout Redirect Plugin for wordpress mu/buddypress</a> <small>Here is our another free plugin bpdev-logout-redirect for buddypress and...</small></li>
<li><a href='http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/' rel='bookmark' title='Permanent Link: Tweak your buddypress login form to redirect to the page user was viewing while login'>Tweak your buddypress login form to redirect to the page user was viewing while login</a> <small>If you are using buddypress,I am sure In most of...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/11/redirect-your-users-to-their-profile-when-the-login-to-your-buddypress-site/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
