<?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>GB\&#039;s BuddyPress Plugins</title>
	<atom:link href="http://dev.benoitgreant.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.benoitgreant.be</link>
	<description>...Trying to make BuddyPress better !</description>
	<lastBuildDate>Fri, 26 Feb 2010 13:30:43 +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>BuddyPress Maps &#8211; How to use it with your plugin</title>
		<link>http://dev.benoitgreant.be/blog/2010/02/buddypress-maps-how-to-use-it-with-your-plugin/</link>
		<comments>http://dev.benoitgreant.be/blog/2010/02/buddypress-maps-how-to-use-it-with-your-plugin/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 14:37:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress Maps]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/?p=162</guid>
		<description><![CDATA[BuddyPress Maps has been developped in a way that allows other plugins to use it.
If you want to use BuddyPress Maps with your plugin, here is a quick guide.

Before initializing the Map, check that the plugin is active (and then that the Bp_Map class exists)

function bp_my_map_plugin_init() {
if (!class_exists(&#039;Bp_Map&#039;)) return false; //checks that BuddyPress Maps is [...]]]></description>
			<content:encoded><![CDATA[<p>BuddyPress Maps has been developped in a way that allows other plugins to use it.</p>
<p>If you want to use BuddyPress Maps with your plugin, here is a quick guide.<br />
<span id="more-162"></span></p>
<p>Before initializing the Map, check that the plugin is active (and then that the Bp_Map class exists)</p>
<pre class="brush: php">
function bp_my_map_plugin_init() {
if (!class_exists(&#039;Bp_Map&#039;)) return false; //checks that BuddyPress Maps is installed
if (!bp_is_my_map_plugin_page()) return false; //You can create a function that checks when the maps stuff must be loaded
bp_maps_head_init(); //init javascript for maps

add_action( &#039;bp_template_content&#039;, &#039;bp_my_map_plugin_display_map&#039; ); //hook the display function
add_filter(&#039;bp_maps_marker_infobulle_content&#039;,&#039;bp_my_map_plugin_marker_infowindow_content&#039;,10,2); //if you want to change the infowindow content, hook a function on bp_maps_marker_infobulle_content
}
</pre>
<pre class="brush: php">
function  bp_my_map_plugin_display_map { //what will be displayed inside the plugins template file

global $wpdb,$bp;

$editable =true; //or have a function that defines where the map must be editable or not

$args=array( //map args

&#039;secondary_id&#039;=&gt;$item_id, //if you need to save a secondary ID with the marker

&#039;editable&#039;=&gt;$editable, //if you want the map to be editable

&#039;enable_desc&#039;=&gt;false, //enable-disable title &amp;amp;amp;amp;amp;amp;amp; description for markers

&#039;type&#039;=&gt;&#039;my_items&#039;, //&quot;reference&quot; slug for the marker (ex. &#039;member_location&#039;)

&#039;markers_max&#039;=&gt;1 //max markers allowed on the map

//you can find the arguments list in at the top of the class Bp_Map

);

//fetch the markers ids
$query = $wpdb-&gt;prepare( &quot;SELECT id FROM `{$bp-&gt;maps-&gt;table_name_markers}` mk WHERE secondary_id={$args[&#039;secondary_id&#039;]} AND type=&#039;{$args[&#039;type&#039;]}&#039;&quot;);

$markers_ids = $wpdb-&gt;get_col($query );

if (empty($markers_ids)) return false;

$map = new Bp_Map($args,$markers_ids); //get the map

echo bp_maps_map_html($map); //show the map

}
</pre>
<p>If you need to add a subnav item to your component, do something like this :</p>
<pre class="brush: php">
function bp_my_map_plugin_setup_nav() {

global $bp;

$args=array( //define your subnav args here

screen_function&#039; =&gt; bp_my_map_plugin_screen_map,

...

);

bp_core_new_subnav_item( $args );

}

add_action( &#039;bp_setup_nav&#039;,&#039;bp_my_map_plugin_setup_nav&#039;);
</pre>
<pre class="brush: php">
function bp_my_map_plugin_screen_map() { //screen function-load the template page

global $bp;

if ( $bp-&gt;is_single_item )

bp_core_load_template( apply_filters( &#039;bp_my_map_plugin_screen_map&#039;, &#039;my_component/single/plugins&#039; ) );

}
</pre>
<pre class="brush: php">
function bp_my_map_plugin_marker_infowindow_content($content,$marker) { //changing the infowindow content, if needed (eg. if you disabled &#039;enable_desc&#039;)

//do your stuff

return $content;
}
</pre>
<p>Another usefull function for you could be function bp_maps_geoip();</p>
<p>which returns user&#8217;s location informations from his IP.  (You need to have set up the absolute path to the *.dat file from <a href="http://www.maxmind.com/" target="_blank">MaxMind</a> in the &#8221;Default Location&#8221; field from the plugin&#8217;s options).</p>
<pre class="brush: php">

print_r(bp_maps_geoip());

//returns eg:
//[country_code3] =&gt; BEL     [country_name] =&gt; Belgium     [region] =&gt; 11     [city] =&gt; Brussels     [postal_code] =&gt;      [latitude] =&gt; 50.8333     [longitude] =&gt; 4.3333     [area_code] =&gt;      [dma_code] =&gt;      [metro_code] =&gt;      [continent_code] =&gt; EU )
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2010/02/buddypress-maps-how-to-use-it-with-your-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BuddyPress Maps</title>
		<link>http://dev.benoitgreant.be/blog/2010/02/buddypress-maps/</link>
		<comments>http://dev.benoitgreant.be/blog/2010/02/buddypress-maps/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 15:38:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress Maps]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[markers]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/?p=124</guid>
		<description><![CDATA[Description
BuddyPress Maps is a component that displays maps (from Google Maps) into your BuddyPress website.
This component can be used by others plugins to edit/save map markers and to display maps easily.
It also includes the BuddyPress Maps for Profile plugin, which allows users to edit/display their location on a map which will be shown on their [...]]]></description>
			<content:encoded><![CDATA[<h3>Description</h3>
<p>BuddyPress Maps is a component that displays maps (from Google Maps) into your BuddyPress website.<br />
This component can be used by others plugins to edit/save map markers and to display maps easily.</p>
<p>It also includes the <em>BuddyPress Maps for Profile</em> plugin, which allows users to edit/display their location on a map which will be shown on their profile.  It also adds a tab in the groups homes with a map displaying the location of every group member.</p>
<h4>Try the demo</h4>
<p>You can registrer on <a href="http://dev.benoitgreant.be/">the demo website</a> to check how it works.</p>
<ul>
<li><a href="http://dev.benoitgreant.be/members/admin/profile">Demo for profile</a></li>
<li><a href="http://dev.benoitgreant.be/members/admin/profile"></a><a href="http://dev.benoitgreant.be/wordpress-mu/groups/buddypress-map-for-groups-test">Demo for group map</a></li>
</ul>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-maps">Download</a></h3>
<p><span id="more-124"></span></p>
<h3>Requirement</h3>
<ul>
<li>BuddyPress 1.2</li>
</ul>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-maps/installation/">Installation</a></h3>
<h4>Options</h4>
<h3>Usage</h3>
<h3>Screenshots</h3>

<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot11.jpg' rel='shadowbox[post-124];player=img;' title='screenshot1'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot11-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot1" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot21.jpg' rel='shadowbox[post-124];player=img;' title='screenshot2'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot21-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot2" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot31.jpg' rel='shadowbox[post-124];player=img;' title='screenshot3'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot31-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot3" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot41.jpg' rel='shadowbox[post-124];player=img;' title='screenshot4'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot41-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot4" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot51.jpg' rel='shadowbox[post-124];player=img;' title='screenshot5'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot51-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot5" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot61.jpg' rel='shadowbox[post-124];player=img;' title='screenshot6'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot61-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot6" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot7.jpg' rel='shadowbox[post-124];player=img;' title='screenshot7'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot7-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot7" /></a>

<h3>Support</h3>
<p>You can get support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-maps" target="_blank">in the forum</a>.</p>
<h4>Donate</h4>
<p>If you enjoy this plugin, please consider a donation !</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="dev@benoitgreant.be" /><input type="hidden" name="item_name" value="BuddyPress Maps" /><input type="hidden" name="item_number" value="buddypress-maps" /><input type="hidden" name="amount" value="10" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2010/02/buddypress-maps/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>BuddyPress Classifieds</title>
		<link>http://dev.benoitgreant.be/blog/2010/02/buddypress-classifieds/</link>
		<comments>http://dev.benoitgreant.be/blog/2010/02/buddypress-classifieds/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 21:00:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress Classifieds]]></category>
		<category><![CDATA[annonces]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[classifieds]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/?p=89</guid>
		<description><![CDATA[Description
This component adds classifieds to your BuddyPress installation.
Download

Requirement

BuddyPress 1.2-rc
WPMU (will be available for WP single installations when WP 3.0 will be released; with the new custom post types functions.  Currently, classifieds are stored as blog posts.)

Installation
Options
Usage
Capabilities
If you want precise control for each of your blog&#8217;s role, activate (sitewide) the plugin BuddyPress Classifieds Roles &#38; Capabilities, [...]]]></description>
			<content:encoded><![CDATA[<h3>Description</h3>
<p>This component adds classifieds to your BuddyPress installation.</p>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-classifieds">Download</a></h3>
<p><span id="more-89"></span></p>
<h3>Requirement</h3>
<ul>
<li>BuddyPress 1.2-rc</li>
<li>WPMU (will be available for WP single installations when WP 3.0 will be released; with the new custom <em>post types</em> functions.  Currently, classifieds are stored as blog posts.)</li>
</ul>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-classifieds/installation/">Installation</a></h3>
<h4>Options</h4>
<h3>Usage</h3>
<p><strong>Capabilities</strong></p>
<p>If you want precise control for each of your blog&#8217;s role, activate (sitewide) the plugin <strong>BuddyPress Classifieds Roles &amp; Capabilitie</strong>s, which is included with the main plugin.</p>
<h3>Screenshots</h3>

<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot5.jpg' rel='shadowbox[post-89];player=img;' title='screenshot5'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot5-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot5" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot4.jpg' rel='shadowbox[post-89];player=img;' title='screenshot4'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot4-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot4" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot3.jpg' rel='shadowbox[post-89];player=img;' title='screenshot3'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot3-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot3" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot2.jpg' rel='shadowbox[post-89];player=img;' title='screenshot2'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot2-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot2" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot1.jpg' rel='shadowbox[post-89];player=img;' title='screenshot1'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot1-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot1" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot6.jpg' rel='shadowbox[post-89];player=img;' title='screenshot6'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2010/02/screenshot6-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot6" /></a>

<h3>Support</h3>
<p>You can get support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-classifieds" target="_blank">in the forum</a>.</p>
<h4>Donate</h4>
<p>If you enjoy this plugin, please consider a donation !</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="dev@benoitgreant.be" /><input type="hidden" name="item_name" value="BuddyPress Classifieds" /><input type="hidden" name="item_number" value="buddypress-classifieds" /><input type="hidden" name="amount" value="15" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2010/02/buddypress-classifieds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BuddyPress QuickPress</title>
		<link>http://dev.benoitgreant.be/blog/2009/11/buddypress-quickpress/</link>
		<comments>http://dev.benoitgreant.be/blog/2009/11/buddypress-quickpress/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 00:29:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress QuickPress]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[quickpress]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/?p=61</guid>
		<description><![CDATA[This plugin allows the users to write simple posts outside the dashboard (just like QuickPress from the Dashboard).]]></description>
			<content:encoded><![CDATA[<h3>Description</h3>
<p>This plugin allows the users to write simple posts outside the dashboard (just like QuickPress from the Dashboard).</p>
<p>It adds a &#8220;Quickpress&#8221; submenu under /blog form which you can easily add a post to any of your blogs.</p>
<p>!This is an alpha release, please check <strong>Known Bugs</strong> at the end of this post.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/buddypress-quickpress/">Download</a></strong></p>
<p><span id="more-61"></span></p>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-quickpress/installation/" target="_blank">Installation</a></h3>
<h3>Usage</h3>
<p>Just use the submenu <em>Blogs&gt;Quickpress</em> under the user options of the <em>blogs</em> component.</p>
<p>From there, you can select a blog where you want to post; add a title, a text, tags and categories; then post it -without having to use the blog Dashboard.</p>
<h4>Capabilities</h4>
<p>This plugin checks the user&#8217;s capabilities.<br />
That means that the user will not see the <em>Quickpress </em>submenu if he isn&#8217;t allowed to write on at least one blog (capability <em>edit_posts</em>); and that the post will not be published if he can&#8217;t do it (capability <em>publish_posts</em>).</p>
<p>If he can write a post but not publish it, the post will be saved as <em>pending</em>.</p>
<p>For more informations on Roles &amp; Capabilities, check the <a href="http://codex.wordpress.org/Roles_and_Capabilities">Wordpress Codex</a>.</p>
<h3>Known Bugs</h3>
<p>You can give support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-quickpress">in the forum</a>.</p>
<h4><strong>Autosuggest</strong></h4>
<p><strong><span style="font-weight: normal">The tags input uses jQuery and ajax (from the WP core) to make autosuggestions, but seems it does not work (but the query seems to be done).  Maybe <a href="http://sudarmuthu.com/blog/2009/08/25/using-wordpress-built-in-tag-auto-complete-script-in-your-plugins.html">we have to wait WPMU 2.9</a> for this.</span></strong></p>
<h4><strong>Redirection</strong></h4>
<p><strong><span style="font-weight: normal">When posting elsewhere that on the default (main) blog; the redirection after the post as been published, is broken. (~ line 290 of bp-quickpress.php)</span></strong></p>
<h4>Blogs list</h4>
<p>Blogs list do not show if i&#8217;m not logged as admin (maybe this is a role problem ?)</p>
<h4>Screenshots</h4>
<p><a href="http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-19.jpg" rel="shadowbox[post-61];player=img;"><img class="alignnone size-medium wp-image-156" title="screenshot-1" src="http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-19-300x268.jpg" alt="" width="300" height="268" /></a></p>
<h4>Support</h4>
<p>You can get support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-quickpress">in the forum</a>.</p>
<h3>Donate !</h3>
<p>If you enjoy this plugin, please consider a donation !<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="dev@benoitgreant.be" /><input type="hidden" name="item_name" value="BuddyPress QuickPress" /><input type="hidden" name="item_number" value="buddypress-quickpress" /><input type="hidden" name="amount" value="5" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2009/11/buddypress-quickpress/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>BuddyPress Admin Notifications</title>
		<link>http://dev.benoitgreant.be/blog/2009/11/buddypress-admin-notifications/</link>
		<comments>http://dev.benoitgreant.be/blog/2009/11/buddypress-admin-notifications/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 17:11:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress Admin Notifications]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/?p=26</guid>
		<description><![CDATA[This plugin adds a checkbox in the post/page admin (for the admins and editors) to tell members (notification &#38; email) that an important post has been published.]]></description>
			<content:encoded><![CDATA[<h3>Description</h3>
<p>This plugin adds a checkbox in the post/page admin (for the admins and editors) to tell members (notification &amp; email) that an important post has been published.</p>
<p><span style="color: #ff0000">/!\ Not yet tested with BP 1.2</span></p>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-admin-notifications/">Download v 0.1</a></h3>
<p><span id="more-26"></span></p>
<h3>Installation</h3>
<ul>
<li>Install the plugin</li>
<li>Activate it <em>site-wide</em></li>
</ul>
<h3>Usage</h3>
<p>Just check the checbox at the bottom of a page/post when editing it.<br />
You won&#8217;t be able to post a notification if the post/page is not published; password protected or if a notification has been sent before.<br />
If a notification has been sent before; the checkbox will be disabled.  You can eventually re-enable it by deleting the meta key <em>bp_admin_notifications_sent</em>.</p>
<h3>Screenshots</h3>
<p><img class="alignnone size-full wp-image-27" title="BuddyPress Admin Notifications" src="http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-12.jpg" alt="BuddyPress Admin Notifications" width="335" height="87" /></p>
<p><strong>Support</strong></p>
<p>You can get support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-admin-notifications">in the forum</a>.</p>
<h3>Donate !</h3>
<p>If you enjoy this plugin, please consider a donation !<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="dev@benoitgreant.be" /><input type="hidden" name="item_name" value="BuddyPress Admin Notifications" /><input type="hidden" name="item_number" value="buddypress-admin-notifications" /><input type="hidden" name="amount" value="3" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2009/11/buddypress-admin-notifications/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>BuddyPress Real Names</title>
		<link>http://dev.benoitgreant.be/blog/2009/11/buddypress-real-names/</link>
		<comments>http://dev.benoitgreant.be/blog/2009/11/buddypress-real-names/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 12:29:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress Real Names]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/?p=22</guid>
		<description><![CDATA[This plugin displays the users firstname+lastname instead of his nickname.]]></description>
			<content:encoded><![CDATA[<h3>Description</h3>
<p>Buddypress uses the Full Name core field to sort alphabetically or by letter the members.<br />
But maybe you are using this field as a &#8220;nickname&#8221; field&#8230;<br />
Use this plugin to replace the members names by their real names !</p>
<p>Sorting members will also work following their real name.<br />
<span style="color: #ff0000">/!\ Not yet tested with BP 1.2</span></p>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-real-names">Download v 0.1</a></h3>
<p><span id="more-22"></span></p>
<h3>Installation</h3>
<ul>
<li>Install the plugin into the plugin directory, and activate it <em>site-wide</em></li>
<li>Create three news fields that will be used by the plugins (ex. &#8220;Member name&#8221;, &#8220;Member firstname&#8221;, &#8220;Member bothnames&#8221;).  I suggest &#8220;Member name&#8221; to be a required field.</li>
<li>Fill the values of those fields for your profile (the datas for at least one member are needed to setup the plugin options)</li>
<li>Setup the Real Names plugin options in the admin menu, under the <em>BuddyPress </em>panel.</li>
</ul>
<h3>Screenshots</h3>
<div id="attachment_23" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-23" title="screenshot-1" src="http://dev.benoitgreant.be/wordpress/wp-content/uploads/2009/11/screenshot-11-300x120.jpg" alt="BuddyPress Real Names Setup Options" width="300" height="120" /><p class="wp-caption-text">BuddyPress Real Names Setup Options</p></div>
<p><strong>Support</strong></p>
<p>You can get support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-real-names">in the forum</a>.</p>
<h3>Donate !</h3>
<p>If you enjoy this plugin, please make a donation !<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="dev@benoitgreant.be" /><input type="hidden" name="item_name" value="BuddyPress Real Names" /><input type="hidden" name="item_number" value="buddypress-real-names" /><input type="hidden" name="amount" value="5" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2009/11/buddypress-real-names/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>BuddyPress Sitewide Featured Posts</title>
		<link>http://dev.benoitgreant.be/blog/2009/11/buddypress-sitewide-featured-posts/</link>
		<comments>http://dev.benoitgreant.be/blog/2009/11/buddypress-sitewide-featured-posts/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 12:46:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BuddyPress Sitewide Featured Posts]]></category>

		<guid isPermaLink="false">http://dev.benoitgreant.be/wordpress/?p=3</guid>
		<description><![CDATA[This is a BuddyPress plugin that allows you to select and display featured posts sitewide.]]></description>
			<content:encoded><![CDATA[<h3>Description</h3>
<p>This is a BuddyPress plugin that allows you to select and display sitewide featured posts in a widget.<br />
<strong><a href="http://wordpress.org/extend/plugins/buddypress-sitewide-featured-posts">Download</a></strong></p>
<p><span id="more-65"></span></p>
<h3><a href="http://wordpress.org/extend/plugins/buddypress-sitewide-featured-posts/installation/">Installation</a></h3>
<h3>Usage</h3>
<h4>How to feature/unfeature a post or page ?</h4>
<p>when you want to feature a post or a page; just edit it and check « Add this post/page to Featured Posts ».</p>
<h4>how to display the featured posts ?</h4>
<p>Just use the Sitewide Featured Posts widget in the widgets screen under Appearance.<br />
You can set the following options :</p>
<ul>
<li>Widget title</li>
<li>Number of featured posts to display</li>
<li>Excerpt size (or leave empty if you want to show the full post</li>
<li>Show author avatar or not</li>
<li>Customize post display</li>
</ul>
<p>If you need further customisation while displaying the posts, there is a filter <em>sitewide_featured_item</em> that you can use to edit the <em>$post</em> variable.</p>
<h3>Uninstallation</h3>
<p>Remove the plugin and delete the table .<em>._sitewide_featured_posts</em></p>
<h3>Screenshots</h3>

<a href='http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-1.jpg' rel='shadowbox[post-65];player=img;' title='screenshot-1'><img width="150" height="150" src="http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-1-150x150.jpg" class="attachment-thumbnail" alt="" title="screenshot-1" /></a>
<a href='http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-2.jpg' rel='shadowbox[post-65];player=img;' title='screenshot-2'><img width="150" height="90" src="http://dev.benoitgreant.be/wordpress-mu/files/2009/11/screenshot-2-150x90.jpg" class="attachment-thumbnail" alt="" title="screenshot-2" /></a>

<h3>Support</h3>
<p>You can get support <a href="http://dev.benoitgreant.be/bbpress/forum/buddypress-sitewide-featured-posts">in the forum</a>.</p>
<h3>Donate !</h3>
<p>If you enjoy this plugin, please consider a donation !<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="dev@benoitgreant.be" /><input type="hidden" name="item_name" value="BuddyPress Sitewide Featured Posts" /><input type="hidden" name="item_number" value="buddypress-sitewide-featured-posts" /><input type="hidden" name="amount" value="5" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.benoitgreant.be/blog/2009/11/buddypress-sitewide-featured-posts/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
