<?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>The State of Affairs &#187; BuddyPress</title>
	<atom:link href="http://stateofaffairs.info/archive/category/blogging/buddypress-blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://stateofaffairs.info</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 16:12:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Create Custom Edit Profile Menu in BuddyPress</title>
		<link>http://stateofaffairs.info/archive/create-profile-menu-buddypress/</link>
		<comments>http://stateofaffairs.info/archive/create-profile-menu-buddypress/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 11:22:02 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[BuddyPress]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2749</guid>
		<description><![CDATA[Some of the best customizations to a site are built through thinking about the users of a particular site. When users log into BuddyPress they...]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->
<p>Some of the best customizations to a site are built through thinking about the users of a particular site. When users log into BuddyPress they are automatically redirected to the homepage and are often left with a &#8220;what now&#8221; feeling. </p>
<p>Users love to be able to customize their profile and blog easily, so it only makes sense to add easy to use navigation menus to logged in users landing pages. I created the following code to make it semi-easy to add a edit profile menu. </p>
<p>The menu has been tested with BP 1.0.1 and WPMU 2.7.1</p>
<p>We&#8217;ll look at each link individually first</p>
<div class="plasticwarp">
<h4>Edit Profile Link</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/editc&quot;&gt;Edit Profile Info&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Change Avatar</h4>
<p>  &lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/change-avatar&quot;&gt;Change Avatar&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Change Theme</h4>
<p>&lt;a href=&quot;/wp-admin/themes.php&quot;&gt;Change Themes&lt;/a&gt;
 </p></div>
<div class="plasticwarp">
<h4>Create a Blog</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;blogs/create-a-blog&quot;&gt;Create a Blog&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Create a Group</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;groups/create&quot;&gt;Create a Group&lt;/a&gt;
  </p></div>
<div class="plasticwarp">
<h4>Change Email or Password</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/general&quot;&gt;Change E-Mail or Password&lt;/a&gt;
  </p></div>
<div class="plasticwarp">
<h4>Notification Settings</h4>
<p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/notifications&quot;&gt;Notifications Settings&lt;/a&gt;
</p></div>
<div class="plasticwarp">
<h4>Blog Settings</h4>
<p>&lt;a href=&quot;/wp-admin/options-general.php&quot;&gt;Blog Settings&lt;/a&gt;</p>
</div>
<p>Here is the full code in a unordered list that is only displayed to logged in users.</p>
<div class="plasticwarp">
<p>&lt;?php if($user_ID) : ?&gt;</p>
<p>&lt;ul&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/editc&quot;&gt;Edit Profile Info&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/change-avatar&quot;&gt;Change Avatar&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;/wp-admin/themes.php&quot;&gt;Change Themes&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;blogs/create-a-blog&quot;&gt;Create a Blog&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;groups/create&quot;&gt;Create a Group&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/general&quot;&gt;Change E-Mail or Password&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/notifications&quot;&gt;Notifications Settings&lt;/a&gt;&lt;/li&gt;</p>
<p>  &lt;li&gt;&lt;a href=&quot;/wp-admin/options-general.php&quot;&gt;Blog Settings&lt;/a&gt;&lt;/li&gt;</p>
<p>	&lt;/ul&gt;</p>
<p>	&lt;?php else : ?&gt;</p>
<p>    &lt;?php endif; ?&gt;
</p></div>
<p>Now you can wrap it in a div and style to your liking. If you would like to use it as a widget I recommend downloading the <a href="http://www.samsarin.com/blog/2007/03/10/samsarin-php-widget/"rel="nofollow" target="_blank" >Samsarin PHP Widget</a>, which allows you to add PHP to certain widgets.</p>
<p>One last css design hint, the default BuddyPress widget title is styled as class=&#8221;widgettitle&#8221;</p>
      
<p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow">buddypress</a>, <a href="http://technorati.com/tag/buddypress+menu" class="ttags" target="_blank" rel="tag nofollow"> buddypress menu</a>, <a href="http://technorati.com/tag/custom+buddypress+menu" class="ttags" target="_blank" rel="tag nofollow"> custom buddypress menu</a>, <a href="http://technorati.com/tag/buddypress+profile+menu" class="ttags" target="_blank" rel="tag nofollow"> buddypress profile menu</a>, <a href="http://technorati.com/tag/buddypress+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress code</a>, <a href="http://technorati.com/tag/create+menu+buddypress" class="ttags" target="_blank" rel="tag nofollow"> create menu buddypress</a>, <a href="http://technorati.com/tag/buddypress+menu+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress menu code</a>, <a href="http://technorati.com/tag/buddypress+customization" class="ttags" target="_blank" rel="tag nofollow"> buddypress customization</a>, <a href="http://technorati.com/tag/buddypress+theme+edit" class="ttags" target="_blank" rel="tag nofollow"> buddypress theme edit</a></p>
<iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fstateofaffairs.info%2Farchive%2Fcreate-profile-menu-buddypress%2F&amp;layout=standard&amp;show_faces=true&amp;float=left&amp;width=450&amp;action=recommend&amp;colorscheme=light&amp;height=35' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:100%; height:35px' allowTransparency='true'></iframe><!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/create-profile-menu-buddypress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SEO Plugin for BuddyPress</title>
		<link>http://stateofaffairs.info/archive/buddypress-seo-plugin/</link>
		<comments>http://stateofaffairs.info/archive/buddypress-seo-plugin/#comments</comments>
		<pubDate>Fri, 22 May 2009 20:46:42 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[Blogging SEO]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddypress plugin]]></category>
		<category><![CDATA[buddypress search engine optimization]]></category>
		<category><![CDATA[buddypress seo]]></category>
		<category><![CDATA[buddypress seo plugin]]></category>
		<category><![CDATA[duplicate content buddypress]]></category>
		<category><![CDATA[duplicate title tags buddypress]]></category>
		<category><![CDATA[how to seo buddypress]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo for buddypress]]></category>
		<category><![CDATA[seo tips]]></category>
		<category><![CDATA[website optimization]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2695</guid>
		<description><![CDATA[BuddyPress is a new program that is in dire need of some SEO optimization. Luckily there is a new plugin that is going to take...]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->
<p>BuddyPress is a new program that is in dire need of some SEO optimization. Luckily there is a new plugin that is going to take a lot of the duplicate content and title tag issues out of the picture for us BuddyPress site developers.</p>
<h2>Seo for BuddyPress: a great plugin</h2>
<p>The new plugin is called Seo for BuddyPress and was created by <a href="http://wordpress.org/extend/plugins/profile/svenl77" rel="nofollow" target="_blank">Sven Lehnert</a>. With Seo for BuddyPress you can enter</p>
<ul>
<li>Titles</li>
<li>Descriptions</li>
<li>And Keywords</li>
</ul>
<p>for the following pages:</p>
<ul>
<li>Profile Pages -profile, activity, blogs, friends, groups, wire</li>
<li>Groups Pages &#8211; groups home, groups wire, groups forum, groups members</li>
<li>Events Pages from the bp-events plugin</li>
<li>Bb-dev Youtube &#038; Flickr pages</li>
<li>Your own buddypress pages, such as your profile</li>
</ul>
<p>Also the plugin comes with these great special tags to automaticly insert the user name, group name, or event name.</p>
<ul>
<li>%username%</li>
<li>%groupname%</li>
<li>%eventname%</li>
</ul>
<p>I highly recommend you install <a href="http://wordpress.org/extend/plugins/seo-for-buddypress/" rel="nofollow" target="_blank">Seo for Buddypress</a> on your BuddyPress site. It has worked flawlessly for me and appears to be headed in the right direction for future updates.</p>
<p>The big G will love you for it.</p>
      
<p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/buddypress+seo" class="ttags" target="_blank" rel="tag nofollow">buddypress seo</a>, <a href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow"> buddypress</a>, <a href="http://technorati.com/tag/website+optimization" class="ttags" target="_blank" rel="tag nofollow"> website optimization</a>, <a href="http://technorati.com/tag/buddypress+search+engine+optimization" class="ttags" target="_blank" rel="tag nofollow"> buddypress search engine optimization</a>, <a href="http://technorati.com/tag/seo+for+buddypress" class="ttags" target="_blank" rel="tag nofollow"> seo for buddypress</a>, <a href="http://technorati.com/tag/how+to+seo+buddypress" class="ttags" target="_blank" rel="tag nofollow"> how to seo buddypress</a>, <a href="http://technorati.com/tag/buddypress+plugin" class="ttags" target="_blank" rel="tag nofollow"> buddypress plugin</a>, <a href="http://technorati.com/tag/buddypress+seo+plugin" class="ttags" target="_blank" rel="tag nofollow"> buddypress seo plugin</a>, <a href="http://technorati.com/tag/seo+tips" class="ttags" target="_blank" rel="tag nofollow"> seo tips</a>, <a href="http://technorati.com/tag/seo" class="ttags" target="_blank" rel="tag nofollow"> seo</a>, <a href="http://technorati.com/tag/duplicate+content+buddypress" class="ttags" target="_blank" rel="tag nofollow"> duplicate content buddypress</a>, <a href="http://technorati.com/tag/duplicate+title+tags+buddypress" class="ttags" target="_blank" rel="tag nofollow"> duplicate title tags buddypress</a></p>
<iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fstateofaffairs.info%2Farchive%2Fbuddypress-seo-plugin%2F&amp;layout=standard&amp;show_faces=true&amp;float=left&amp;width=450&amp;action=recommend&amp;colorscheme=light&amp;height=35' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:100%; height:35px' allowTransparency='true'></iframe><!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/buddypress-seo-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Create Custom Links in BuddyPress</title>
		<link>http://stateofaffairs.info/archive/create-custom-links-buddypress/</link>
		<comments>http://stateofaffairs.info/archive/create-custom-links-buddypress/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 02:52:27 +0000</pubDate>
		<dc:creator>Jeremy Winter</dc:creator>
				<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddypress code]]></category>
		<category><![CDATA[buddypress examples]]></category>
		<category><![CDATA[buddypress profile]]></category>
		<category><![CDATA[buddypress themes]]></category>
		<category><![CDATA[Building Link]]></category>
		<category><![CDATA[construct this URL]]></category>
		<category><![CDATA[custom links]]></category>
		<category><![CDATA[links buddypress]]></category>
		<category><![CDATA[username]]></category>
		<category><![CDATA[using buddypress]]></category>
		<category><![CDATA[variable user name]]></category>

		<guid isPermaLink="false">http://stateofaffairs.info/?p=2320</guid>
		<description><![CDATA[Recently I have been thinking of ways to add greater usability to my BuddyPress project ebodia.com. One thing I noticed is that when new users...]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start -->
<p>Recently I have been thinking of ways to add greater usability to my BuddyPress project ebodia.com. One thing I noticed is that when new users sign up, they are redirected to the homepage.</p>
<p>I felt this left new users with a &#8220;What now?&#8221; feeling, so I thought it would be a good idea to add a second navigation bar with some helpful links to the buddypress home theme. The Main roadblock I found was how to create custom links for users that were logged in. I did some digging and was able to find a snippet of code that will automatically parse the correct user id into the link.</p>
<h3>How is this useful?</h3>
<p>A few of the direct links I added for recently logged in users was -</p>
<ul>
<li>A link to their Profile</li>
<li>A link to their list of blogs</li>
<li>A link to their BuddyPress account settings</li>
</ul>
<p>I felt this would be useful for new users that weren&#8217;t sure where to start.</p>
<h3>Code for Custom Links in BuddyPress</h3>
<p>This code will work for most custom links you will need, but not all of them. For example, I was not able to create a link to a users blog directly, so instead I created a link to their list of blogs. </p>
<p>Here is the Old example code to add a link to the logged in users friend activity. The new version is after this one. </p>
<p><del datetime="2009-06-23T10:03:18+00:00">&lt;a href=&quot;&lt;?php global $bp; echo bp_core_get_userurl($bp-&gt;loggedin_user-&gt;id); ?&gt;activity/my-friends&quot;&gt;Your Friends Activity&lt;/a&gt;  </del><br />
<strong><br />
Update: </strong>Andy P. suggested a alternative to the code above. Instead of declaring the bp global variable and requesting the logged in user id, why not just use a handy template tag? This code will output the same thing as the code above, but uses a very useful BuddyPress template tag.</p>
<div class="plasticwarp">
&lt;a href=&#8221;&lt;?php echo bp_loggedin_user_domain() ?&gt;activity/my-friends&#8221;&gt;Your Friends Activity&lt;/a&gt;
</div>
<p>The above code will output this link</p>
<p><code>http://yousite.com/members/logged-in-user-id/activity/my-friends</code></p>
<p>If you take a look at the links in your own profile you should be able to see the small bit of code you will need to customize the links. <strong>Activity/myfriends</strong> can be replaced in the original code by <strong>profile/public</strong> to create a link to the logged in users profile, for example. </p>
<p>I want to thank <a href="http://buddypress.org/developers/burtadsit/"rel="nofollow" target="_blank" >Burtadsit</a> for providing the original code used in the above example and Andy P. for providing the template tag AND BuddyPress. </p>
      
<p class="ttags">Technorati Tags: <a href="http://technorati.com/tag/buddypress+examples" class="ttags" target="_blank" rel="tag nofollow">buddypress examples</a>, <a href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow"> buddypress</a>, <a href="http://technorati.com/tag/buddypress+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress code</a>, <a href="http://technorati.com/tag/custom+links" class="ttags" target="_blank" rel="tag nofollow"> custom links</a>, <a href="http://technorati.com/tag/links+buddypress" class="ttags" target="_blank" rel="tag nofollow"> links buddypress</a>, <a href="http://technorati.com/tag/buddypress+profile" class="ttags" target="_blank" rel="tag nofollow"> buddypress profile</a>, <a href="http://technorati.com/tag/using+buddypress" class="ttags" target="_blank" rel="tag nofollow"> using buddypress</a>, <a href="http://technorati.com/tag/Building+Link" class="ttags" target="_blank" rel="tag nofollow"> Building Link</a>, <a href="http://technorati.com/tag/construct+this+URL" class="ttags" target="_blank" rel="tag nofollow"> construct this URL</a>, <a href="http://technorati.com/tag/variable+user+name" class="ttags" target="_blank" rel="tag nofollow"> variable user name</a>, <a href="http://technorati.com/tag/username" class="ttags" target="_blank" rel="tag nofollow"> username</a>, <a href="http://technorati.com/tag/buddypress+themes" class="ttags" target="_blank" rel="tag nofollow"> buddypress themes</a></p>
<iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fstateofaffairs.info%2Farchive%2Fcreate-custom-links-buddypress%2F&amp;layout=standard&amp;show_faces=true&amp;float=left&amp;width=450&amp;action=recommend&amp;colorscheme=light&amp;height=35' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:100%; height:35px' allowTransparency='true'></iframe><!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://stateofaffairs.info/archive/create-custom-links-buddypress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: stateofaffairs.info @ 2012-02-09 12:34:48 by W3 Total Cache -->
