<?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>Sat, 24 Jul 2010 13:51:23 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=abc</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 are automatically redirected to the homepage and are often left with a &#8220;what now&#8221; feeling. Users love to be able to customize their profile and blog easily, so it only [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><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> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/create-profile-menu-buddypress/feed/</wfw:commentRss> <slash:comments>2</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 a lot of the duplicate content and title tag issues out of the picture for us BuddyPress site developers. Seo for BuddyPress: a great plugin The new plugin is called [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><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> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/buddypress-seo-plugin/feed/</wfw:commentRss> <slash:comments>4</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 sign up, they are redirected to the homepage. I felt this left new users with a &#8220;What now?&#8221; feeling, so I thought it would be a good idea to add [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><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=â€&lt;?php echo bp_loggedin_user_domain() ?&gt;activity/my-friendsâ€&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> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/create-custom-links-buddypress/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>BuddyPress V1.0 Beta Release Today</title><link>http://stateofaffairs.info/archive/buddypress-beta-release/</link> <comments>http://stateofaffairs.info/archive/buddypress-beta-release/#comments</comments> <pubDate>Mon, 15 Dec 2008 23:44:27 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[BuddyPress]]></category> <category><![CDATA[buddy press]]></category> <category><![CDATA[buddypress]]></category> <category><![CDATA[buddypress demo]]></category> <category><![CDATA[buddypress download]]></category> <category><![CDATA[buddypress plugin]]></category> <category><![CDATA[buddypress theme]]></category> <category><![CDATA[download]]></category> <category><![CDATA[installing buddypress]]></category> <category><![CDATA[using buddypress]]></category> <category><![CDATA[wordpress buddypress]]></category> <category><![CDATA[wordpress mt mu my mi]]></category> <category><![CDATA[wordpress mu]]></category> <category><![CDATA[wordpress mu plugins]]></category> <category><![CDATA[wordpress social networking]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=1485</guid> <description><![CDATA[(3:35pm_PST)Buddypress beta has reportedly been scheduled to be released sometime this evening according to Andy Peatling. This will actually be the 1.0 beta launch of each individual plugin as Buddypress was reported to be released in that fashion. Yes, it will be today (BETA), but I am on the west coast. There will be download [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>(3:35pm_PST)Buddypress beta has reportedly been scheduled to be released sometime this evening according to Andy Peatling. This will actually be the 1.0 beta launch of each individual plugin as Buddypress was reported to be released in that fashion.</p><blockquote><p>Yes, it will be today (BETA), but I am on the west coast. There will be download links on the site sometime this afternoon.</p><p>Andy</p></blockquote><p>For those of you unfamiliar with Buddypress, Buddypress is a set of plugins for WordPress MU that adds social networking features such as the ability to have a personal profile as well as message features. Quite a revolutionary idea indeed.</p><p>I&#8217;ll be posting updates if there are any changes to times or (place) for the release. In the meantime you can <a
href="http://buddypress.org/"rel="nofollow" target="_blank" >test out Buddypress</a> on the buddypress homepage</p><p><strong>UPDATE: (9:05pm_PST)</strong><br
/> You can now <a
href="http://buddypress.org/download/"rel="nofollow" target="_blank" >download Buddypress V1.0b1</a> at Buddypress.org.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/using+buddypress" class="ttags" target="_blank" rel="tag nofollow">using buddypress</a>, <a
href="http://technorati.com/tag/installing+buddypress" class="ttags" target="_blank" rel="tag nofollow"> installing buddypress</a>, <a
href="http://technorati.com/tag/wordpress+buddypress" class="ttags" target="_blank" rel="tag nofollow"> wordpress buddypress</a>, <a
href="http://technorati.com/tag/buddypress+theme" class="ttags" target="_blank" rel="tag nofollow"> buddypress theme</a>, <a
href="http://technorati.com/tag/buddypress+download" class="ttags" target="_blank" rel="tag nofollow"> buddypress download</a>, <a
href="http://technorati.com/tag/download" class="ttags" target="_blank" rel="tag nofollow"> download</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+demo" class="ttags" target="_blank" rel="tag nofollow"> buddypress demo</a>, <a
href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow"> buddypress</a>, <a
href="http://technorati.com/tag/wordpress+mu" class="ttags" target="_blank" rel="tag nofollow"> wordpress mu</a>, <a
href="http://technorati.com/tag/wordpress+social+networking" class="ttags" target="_blank" rel="tag nofollow"> wordpress social networking</a>, <a
href="http://technorati.com/tag/buddy+press" class="ttags" target="_blank" rel="tag nofollow"> buddy press</a>, <a
href="http://technorati.com/tag/wordpress+mt+mu+my+mi" class="ttags" target="_blank" rel="tag nofollow"> wordpress mt mu my mi</a>, <a
href="http://technorati.com/tag/wordpress+mu+plugins" class="ttags" target="_blank" rel="tag nofollow"> wordpress mu plugins</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/buddypress-beta-release/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: stateofaffairs.info @ 2010-09-09 17:52:37 by W3 Total Cache -->