<?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>nm</title>
	<atom:link href="http://nahummadrid.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nahummadrid.com</link>
	<description></description>
	<lastBuildDate>Sun, 15 Aug 2010 00:38:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Canvas is a beast</title>
		<link>http://nahummadrid.com/blog/2010/08/canvas-is-a-beast/</link>
		<comments>http://nahummadrid.com/blog/2010/08/canvas-is-a-beast/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 00:38:39 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=487</guid>
		<description><![CDATA[I&#8217;m having a tough time with Wootheme&#8217;s Canvas and child themes. For one, I&#8217;m having trouble with adapting it to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m having a tough time with Wootheme&#8217;s Canvas and child themes. For one, I&#8217;m having trouble with adapting it to Buddypress and multisite. Where before I was strictly Freshnews and plussing out the custom.css and sharing headers out to other themes for sites on the network, and I was loving that.</p>
<p>Now. Child themes have me going in circles. Some of my old bad habits still work but some willy nilly-ness is going on with a couple of functions and I miss my old custom.css. Any one know how to get a custom.css to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/08/canvas-is-a-beast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Return of NM</title>
		<link>http://nahummadrid.com/blog/2010/08/the-return-of-nm/</link>
		<comments>http://nahummadrid.com/blog/2010/08/the-return-of-nm/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 23:40:37 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Update]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=480</guid>
		<description><![CDATA[No not a sequel announcement for the 80 mouse movie. It&#8217;s the return of me to this site. I&#8217;ve been [...]]]></description>
			<content:encoded><![CDATA[<p>No not a sequel announcement for the 80 mouse movie. It&#8217;s the return of me to this site.</p>
<p>I&#8217;ve been off learning about buddypress and wp3.  I did have a semi-framework installed here before but with 3.0wp I felt it was time to readjust some things and begin some practices I wasn&#8217;t using before. Like child themes, post types, and hooks. Yea hooks.</p>
<p>So I&#8217;m refitting the site with the Canvas theme (child theme) and going to apply as many as the scripts I had on the previous MU framework along with Buddypress of course.  I have the videos site and photos site that are going to be beast but we&#8217;ll see how they get folded back in. It should be fun.</p>
<p>So you&#8217;ll see some jankiness but its just me pulling out all the engine parts. Guaranteed, after putting it back together there&#8217;ll be some left over.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/08/the-return-of-nm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Character Limit to Buddypress Activity Post Form</title>
		<link>http://nahummadrid.com/blog/2010/07/add-a-character-limit-to-buddypress-activity-post-form/</link>
		<comments>http://nahummadrid.com/blog/2010/07/add-a-character-limit-to-buddypress-activity-post-form/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 02:03:03 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Buddypress]]></category>
		<category><![CDATA[activity post]]></category>
		<category><![CDATA[character limit]]></category>
		<category><![CDATA[post limit]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=459</guid>
		<description><![CDATA[Here&#8217;s how I added length limiting to my post box in Buddypress. Open the activity/post-form.php and add this near top. [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how I added length limiting to my post box in Buddypress.</p>
<p>Open the activity/post-form.php and add this near top. I put it under the avatar, don&#8217;t remember right now if there was a reason for that.</p>
<pre class="codetype">
&lt;script type="text/javascript"&gt;
&lt;!-- Begin
function limitText(limitField, limitCount, limitNum) {
if (limitField.value.length &gt; limitNum) {
limitField.value = limitField.value.substring(0, limitNum);
} else {
limitCount.value = limitNum - limitField.value.length;
}
}
// End --&gt;
&lt;/script&gt;
</pre>
<p>Add this next clip right afterwards or depending where you want it to display the number counter, you can move around as you please with #numbCount or whatever you&#8217;d like to call it in your style sheet.  Change the value number according to how many characters you want to allow, i&#8217;ve place 148 (sounded like a good number)</p>
<pre class="codetype">
&lt;input readonly type="text" name="countdown" size="3" value="148" id="numbCount"&gt;
</pre>
<p>Next replace the following</p>
<pre class="codetype">
&lt;textarea name="whats-new" id="whats-new" cols="50" rows="10"&gt;&lt;?php if ( isset( $_GET['r'] ) ) : ?&gt;@&lt;?php echo esc_attr( $_GET['r'] ) ?&gt; &lt;?php endif; ?&gt;&lt;/textarea&gt;
</pre>
<p>with the following, remember to include the value after where it says countdown.</p>
<pre class="codetype">
&lt;textarea id="whats-new" cols="50" rows="10" name="limitedtextarea" onKeyDown= "limitText(this.form.limitedtextarea,this.form.countdown,148);"             onKeyUp="limitText(this.form.limitedtextarea,this.form.countdown,148);"" /&gt;&lt;?php if ( isset( $_GET['r'] ) ) : ?&gt;@&lt;?php echo esc_attr( $_GET['r'] ) ?&gt; &lt;?php endif; ?&gt;&lt;/textarea&gt;
</pre>
<p>That&#8217;s how i got it to work. Any suggestions on how to optimize or make it better, leave me a note. Like for instance, I think users can copy and paste text longer than the limit and it&#8217;ll accept it&#8230;I haven&#8217;t looked into it as it doesn&#8217;t happen that often, but if you know please share.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/07/add-a-character-limit-to-buddypress-activity-post-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BP&#8217;s Most Common Component Combinations</title>
		<link>http://nahummadrid.com/blog/2010/07/bps-most-common-component-combinations/</link>
		<comments>http://nahummadrid.com/blog/2010/07/bps-most-common-component-combinations/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 14:59:01 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Buddypress]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=425</guid>
		<description><![CDATA[I&#8217;ve tried many of the different bp plugins available and these keep sticking around time after time on each network [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">I&#8217;ve tried many of the different bp plugins available and these keep sticking around time after time on each network I am working with. These are only one the ones listed in my plugins panel. There have been some other plugins that I&#8217;ve worked into the functions. The themes or main sites usually end up with the same 30-40 plugins and I&#8217;m dead set on those everytime. Over time just as the regular plugins have settled in as must haves&#8230;.i&#8217;m starting to get a feel for must-have bp related plugins. Would like to see what combinations anyone else has grown comfortable with.</div>
<div></div>
<div id="_mcePaste"><strong>Must-use</strong></div>
<div id="_mcePaste">Limit Blogs per User</div>
<div></div>
<div id="_mcePaste"><strong>Network</strong></div>
<div id="_mcePaste">Buddypress Activity Stream Hashtags</div>
<div id="_mcePaste">BuddyPress Community Stats</div>
<div id="_mcePaste">BuddyPress Links</div>
<div id="_mcePaste">BuddyPress Member Profile Stats</div>
<div></div>
<div id="_mcePaste"><strong>Active</strong></div>
<div id="_mcePaste">Author Avatars List</div>
<div id="_mcePaste">BP Blog Author Profile Link</div>
<div id="_mcePaste">BuddyPress Profile Privacy</div>
<div id="_mcePaste">BuddyPress Template Pack</div>
<div id="_mcePaste">Invite Anyone</div>
<div></div>
<div id="_mcePaste"><strong>Custom</strong></div>
<div id="_mcePaste">Favorite Blog Posts (Adds a like button on all sitewide blogs posts, also adds a who&#8217;s liked this post widget on every post, and stores all your favorite posts on your profile)</div>
<div id="_mcePaste">MU Latest Activity Filter (Changes language per blog, ex. Blog X &#8220;wrote a post&#8221;, Blog Y &#8220;dropped a post&#8221;, Blog Z, &#8220;left a post&#8221;</div>
<div id="_mcePaste"></div>
<div>These are the plugins that have filled a role and there are a couple other needed functions I&#8217;m waiting for, or trying to do like:</div>
<div id="_mcePaste">X Component plugin that makes use of an mu blog and authors. &#8211; basically a plugin that assigns activity type, privacy options and language to a subblog and seamlessly ties the author archives and author template into the BP profile.</div>
<div></div>
<div id="_mcePaste"><a href="http://wordpress.org/extend/plugins/achievements/">Achievements, Achievements, Achievements!</a> will complete my bp circle of life!</div>
<div></div>
<div id="_mcePaste">So I feel like BP plugins could grow to about 20-30. This would be crazy plugin management 30-40 plugins + 20-30 bp plugins + Network and Must Use, crazy no?  So maybe bp could see what are the most popular and begin bringing some of the most commonly used plugins into the fold.</div>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/07/bps-most-common-component-combinations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BP Member Profile Links to Network Author Pages</title>
		<link>http://nahummadrid.com/blog/2010/06/bp-member-profile-links-to-network-author-pages/</link>
		<comments>http://nahummadrid.com/blog/2010/06/bp-member-profile-links-to-network-author-pages/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 17:35:00 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Buddypress]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[author.php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=391</guid>
		<description><![CDATA[I&#8217;ve been working on getting links in the buddypress member profile that jump over to author pages(author.php) for that user [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on getting links in the buddypress member profile that jump over to author pages(author.php) for that user on other blogs on the network.  The following hack job code I got to do just that but it doesn&#8217;t do it quite right. It only shows blogs that the user is currently a member of and has posts, not if users have posted in the past and for some reason were moved or deleted as users from the subsite.</p>
<pre class="codetype">
<div id="_mcePaste">&lt;?php</div>
<div id="_mcePaste">$user_id = bp_displayed_user_id();</div>
<div id="_mcePaste">$user_name = bp_get_displayed_user_username();</div>
<div id="_mcePaste">$user_blogs = get_blogs_of_user( $user_id );</div>
<div id="_mcePaste">echo ''.$user_name.'\'s Author Page for this User:&lt;ul&gt;';</div>
<div id="_mcePaste">foreach ($user_blogs AS $user_blog) {</div>
<div id="_mcePaste">echo '&lt;li&gt;&lt;a href="'.$user_blog-&gt;siteurl.'/author/'.__($user_name).'"&gt;'.$user_blog-&gt;blogname.'&lt;/a&gt;&lt;/li&gt;';</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">echo '&lt;/ul&gt;';</div>
<div id="_mcePaste">?&gt;</div>
&lt;?php$user_id = bp_displayed_user_id();$user_name = bp_get_displayed_user_username();$user_blogs = get_blogs_of_user( $user_id );echo ''.$user_name.'\'s posts:&lt;ul&gt;';foreach ($user_blogs AS $user_blog) {    echo '&lt;li&gt;&lt;a href="'.$user_blog-&gt;siteurl.'/author/'.__($user_name).'"&gt;'.$user_blog-&gt;blogname.'&lt;/a&gt;&lt;/li&gt;';}echo '&lt;/ul&gt;';
?&gt;
</pre>
<p>So then I tried to force it by using this:</p>
<pre class="codetype">
&lt;?php
$user_id = bp_displayed_user_id();
$blog_details = get_blog_details(24);
$user_name = bp_get_displayed_user_username();
echo ''.$user_name.'\'s Author page on this Blog:&lt;ul&gt;';
echo '&lt;li&gt;&lt;a href="'.$blog_details-&gt;siteurl.'/author/'.__($user_name).'"&gt;'.$blog_details-&gt;blogname.'&lt;/a&gt;&lt;/li&gt;';
echo '&lt;/ul&gt;';
?&gt;
</pre>
<p>&#8230;only thing with that is that it forces a link on a member profile even if the member doesn&#8217;t have posts on the subsite.</p>
<p>Wondering how I could get the first code to recognize all published posts regardless of membership to the subsite. Any ideas welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/06/bp-member-profile-links-to-network-author-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutting it Down&#8230;</title>
		<link>http://nahummadrid.com/blog/2010/05/shutting-it-down/</link>
		<comments>http://nahummadrid.com/blog/2010/05/shutting-it-down/#comments</comments>
		<pubDate>Mon, 03 May 2010 00:21:21 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[hyperlocal]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=370</guid>
		<description><![CDATA[The time has come. The era of wrangling social media is over. I will begin shutting down accounts across the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://nahummadrid.com/files/2010/05/socialshutdown.jpg" alt="" title="socialshutdown" width="630" height="282" class="alignnone size-full wp-image-371" /><br />
The time has come. The era of wrangling social media is over. I will begin shutting down accounts across the board starting with some of the first accounts I started. Myspace you will be first to go. I&#8217;ve already deleted facebook twice in the last 5 years&#8230;i&#8217;m not scared of a third.</p>
<p>I&#8217;ve been thinking of doing this for some time now. There are profiles that I just don&#8217;t need to have any longer. What can I do there that I can&#8217;t already do here on my site. If someone needs to find me. Google me.</p>
<p>Will be starting soon, my final test of the social networking sites. Delete Account. </p>
<p>I&#8217;m going hyperlocal now.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/05/shutting-it-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Space is Always Greener</title>
		<link>http://nahummadrid.com/blog/2010/04/the-space-is-always-greener/</link>
		<comments>http://nahummadrid.com/blog/2010/04/the-space-is-always-greener/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 04:21:48 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=337</guid>
		<description><![CDATA[I don&#8217;t spend much time on the major social networks any more and if you look at my mighty little [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://nahummadrid.com/files/2010/04/myfacespace.jpg" alt="" title="myfacespace" width="620" height="290" class="alignnone size-full wp-image-338" /></p>
<p>I don&#8217;t spend much time on the major social networks any more and if you look at my mighty little twitter widget on my sidebar it&#8217;s been more than 80 days (as of 4/26) since I tweeted. These last 6-12 months have been torture witnessing the mass absorption of social media but it wasn&#8217;t the absorption as much as the showcasing that became a little annoying &#8211; &#8220;hey look at me I are being social media!&#8221; &#8211; it became the web&#8217;s bluetooth ear piece.  </p>
<p>Like I said before it&#8217;s been a couple of years now since I decided to stop being &#8220;social&#8221; in an attempt to hook on to whatever is going to be next. I spend much more time now working with open source platforms like WordPress and I&#8217;ve been exploring hyperlocal and niche networks &#8211; what will be the mom and pop networks of what was large social media. Large networks break off into smaller concentrated inter-micro-networks. I really believe that the social networks will in a sense implode if they haven&#8217;t already. Like any hot spot or popular gathering place, at some point it reaches critical mass. When everyone plus their mother starts showing up to your once exclusive spot it becomes too mainstream even for the mainstream, so layers begin to peel off.</p>
<p>I don&#8217;t use the major networks but I do observe how they are moving along. I login every so often to see what&#8217;s up and study the environment. It&#8217;s been in the past couple of months that I&#8217;ve noticed one very funny thing: </p>
<p>Myspace is cleaning up their space while Facebook is junking up theirs. Very funny. Once they were going in opposite directions and now it looks like they are turning back the other way. I think this is a sign that we are at a crossing point like what happens when the ghostbusters cross beams, well I think we&#8217;re seeing the result with these two guys. I noticed more and more that the myspace is committing to leaner layouts and design while the facebook has been adding more and more customization and distraction to their trademark minimal layout. Farmville? Pages? Junk. </p>
<p>It was supposed to be simple way connecting to family and friends. Pretty soon every single last of the rifraf will have &#8220;graduated&#8221; from myspace and will grace the pages of facebook that by then will have music and customization features just like the old myspace. And while they&#8217;re criss-crossing each other into a plateau &#8211; the new whatever will be here, whether it&#8217;s personal &#8220;blog&#8221; profiles, family networks, local networks or personal lifestream webpages, we are there &#8211; just need a snazzy name and a cute verb for it like social media and tweet.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/04/the-space-is-always-greener/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Ads to Buddypress Activity Stream?</title>
		<link>http://nahummadrid.com/blog/2010/04/how-to-add-ads-to-buddypress-activity-stream/</link>
		<comments>http://nahummadrid.com/blog/2010/04/how-to-add-ads-to-buddypress-activity-stream/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 23:07:39 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Buddypress]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=323</guid>
		<description><![CDATA[Don&#8217;t know if this is the best way to go about doing it but it works for me. If you [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t know if this is the best way to go about doing it but it works for me.</p>
<p>If you want to ad advertisements &#8211; adsense or any other &#8211; try this. By modifying the activity-loop.php. You just need to house your ad code where you want and replace the filepath accordingly.</p>
<pre class="codetype">
&lt;?php /* Querystring is set via AJAX in _inc/ajax.php - bp_dtheme_activity_loop() */ ?&gt;
&lt;?php do_action( 'bp_before_activity_loop' ) ?&gt;
&lt;?php $counter = 0; ?&gt;
&lt;?php if ( bp_has_activities( bp_ajax_querystring( 'activity' )) ) : ?&gt;
&lt;?php /* Show pagination if JS is not enabled, since the "Load More" link will do nothing */ ?&gt;
&lt;noscript&gt;
&lt;div&gt;
&lt;div&gt;&lt;?php bp_activity_pagination_count() ?&gt;&lt;/div&gt;
&lt;div&gt;&lt;?php bp_activity_pagination_links() ?&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/noscript&gt;
&lt;?php if ( empty( $_POST['page'] ) ) : ?&gt;
&lt;ul id="activity-stream"&gt;
&lt;?php endif; ?&gt;
&lt;?php while ( bp_activities() ) : bp_the_activity(); ?&gt;
&lt;?php $counter++; ?&gt;
&lt;?php include( locate_template( array( 'activity/entry.php' ), false ) ) ?&gt;
&lt;?php if ( BP_ACTIVITY_SLUG == bp_current_component() &amp;&amp; bp_is_directory()  ) : ?&gt;
&lt;?php if ( $counter == 5  ) { include( TEMPLATEPATH . '/ads/ad_728x90.php' ); } ?&gt;
&lt;?php if ( $counter == 10  ) { include( TEMPLATEPATH . '/ads/ad_728x90.php' ); } ?&gt;
&lt;?php if ( $counter == 15  ) { include( TEMPLATEPATH . '/ads/ad_728x90.php' ); } ?&gt;
&lt;?php endif;?&gt;
&lt;?php endwhile; ?&gt;
&lt;?php if ( bp_get_activity_count() == bp_get_activity_per_page() ) : ?&gt;
&lt;li&gt;
&lt;a href="#more"&gt;&lt;?php _e( 'Load More', 'buddypress' ) ?&gt;&lt;/a&gt; &amp;nbsp; &lt;span&gt;&lt;/span&gt;
&lt;/li&gt;
&lt;?php endif; ?&gt;
&lt;?php if ( empty( $_POST['page'] ) ) : ?&gt;
&lt;/ul&gt;
&lt;?php endif; ?&gt;
&lt;?php else : ?&gt;
&lt;div id="message"&gt;
&lt;p&gt;&lt;?php _e( 'Sorry, there was no activity found. Please try a different filter.', 'buddypress' ) ?&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;?php endif; ?&gt;
&lt;?php do_action( 'bp_after_activity_loop' ) ?&gt;
&lt;form action="" name="activity-loop-form" id="activity-loop-form" method="post"&gt;
&lt;?php wp_nonce_field( 'activity_filter', '_wpnonce_activity_filter' ) ?&gt;
&lt;/form&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/04/how-to-add-ads-to-buddypress-activity-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Buddypress?</title>
		<link>http://nahummadrid.com/blog/2010/04/what-is-buddypress/</link>
		<comments>http://nahummadrid.com/blog/2010/04/what-is-buddypress/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 01:59:09 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Buddypress]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[social network]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=315</guid>
		<description><![CDATA[Another interesting topic popped up on the BP forums today asking the question, What is Buddypress?&#8230;again my reply was too [...]]]></description>
			<content:encoded><![CDATA[<p>Another interesting topic popped up on the <a href="http://buddypress.org/forums/topic/the-buddypress-next-generation-api-the-journey-begins">BP forums today</a> asking the question, What is Buddypress?&#8230;again my reply was too long for a forum reply. </p>
<p>I think BP has leaned too heavily towards plugins built on top of BP, a plugin itself. I didn&#8217;t see it working that way at first and that&#8217;s why I used MU to house member &#8220;posts&#8221; as different media types or post types by way of a blog for each type. With limited Contributor Author roles for BP members to post on the fronted on each of those blogs BP members now had pseudo picture albums and video libraries and whatever else, links even by way of Author Archives. You inherit comment system, taxonomy for each, a search engine for each and wp plugins that can manipulate those posts like you would a wp blogs, similar videos, similar photos, rate, etc. I thought bp plugins would come in to help intergrate wp authorship into BP profiles to allow for frontend &#8220;posting&#8221;(uploading photos) &amp; manage those &#8220;posts/archives&#8221; what you also inherit is standalone wp sites for each media type../videos for video section or .photos.domain.com for photo minisite to supplement your main blog. Instead of now having to try to figure out how to feature, tag, categorize,  and manipulate photos, videos, or links plugins. </p>
<p>Is there something really big i&#8217;m missing as to why that might not be preferred. Maybe that&#8217;s where I see BP going now instead. It was only with MU i could do this but with post types around the corner for wpsingle&#8230;i think making use of wp post on to house social components is a good option. </p>
<p>Especially MU, whole themes suites could just be the plugins. bp albums or bp links could just be a theme themselves&#8230;i guess for single it would be post types. then bp can focus more on how to feed these into bp profile to display, edit and manage: edit only your &#8220;posts&#8221;  and more time for plugins to manage wp dashboard, blog theme, widgets, on the frontend from your bp profile. Anyway that&#8217;s what I&#8217;m trying to stick to. </p>
<p>So i guess Buddypress is toolkit for building any type of site with members who want to share or see other people share content. </p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/04/what-is-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So, your BP site is up! Now What?</title>
		<link>http://nahummadrid.com/blog/2010/04/so-your-bp-site-is-up-now-what/</link>
		<comments>http://nahummadrid.com/blog/2010/04/so-your-bp-site-is-up-now-what/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 13:19:24 +0000</pubDate>
		<dc:creator>Nahum</dc:creator>
				<category><![CDATA[Buddypress]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://nahummadrid.com/?p=309</guid>
		<description><![CDATA[I started writing this as a forum reply for this thread but I went a little long so I thought [...]]]></description>
			<content:encoded><![CDATA[<p>I started writing this as a forum reply for <a href="http://buddypress.org/forums/topic/so-your-bp-site-is-up-now-how-to-bring-the-people-in-and-start-using-it">this thread</a> but I went a little long so I thought I&#8217;d give it a proper home and kickstart my blog. </p>
<div class="fix"></div>
<p><img src="http://nahummadrid.com/files/2010/04/nowwhatbp.jpg" alt="" title="nowwhatbp" width="430" height="242" class="aligncenter size-full wp-image-313" /><br />
BP and MU and Plugins and Themes. It&#8217;s never really going to be perfect as you say, at some point you have to step back and stop adding the plugins and all the cool new features that you read about at the forums&#8230;and get focused on your community and start working on a story for what you&#8217;ve built. Because the nature of constructing something we these tools is that its easy enough for the next guy to build something very similar and odds are for many your sites will look and navigate very similarly from the get go (so try  to deviate as much as you can from the prepackaged look of a bp site when you&#8217;re building). </p>
<div class="fix"></div>
<p>So what is the story? Your story becomes very important especially in the general market. You have work harder to set your self apart from all the similar looking bp sites and blogs even. Your story starts with you and with the niche you&#8217;ve built your site for. who are you, what is your site and why is it important for me to know about both.  Make it clear that its not meant to be a replacement for larger, established networks.   Get your story to the shakers in your niche, get to know them, get them involved in the site and they&#8217;ll start talking about you and supporting you. Think of coming up with a story as coming up with a gimmick but not so gimmicky! It&#8217;s a narrative and ultimate about page.</p>
<div class="fix"></div>
<p>As for lack of activity, that is a very big deal. So that&#8217;s where those beta testers, friends and shakers come in. Get them to create activity very early and a lot of it. Think about a restaurant. How do you gauge whether or not its good? Are there a lot of people inside eating or not so much. Perception.  DO NOT create fake users with fake activity. <img src='http://nahummadrid.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="fix"></div>
<p>As i said in the beginning there are going to be bugs, never going to be perfect if your small time, once they know your story of being &#8220;a DIY little guy&#8221; invite the community to be part of the building and creative process of the site thru a blog blog, add report-a-bug links, give error page, nice looking error messages.  When there is an error or down site, ask for forgiveness and give credit to the user who pointed it out, send out  plain text letter emails directly from you the founder not &#8220;The Team&#8221; and user will be a little more forgiving of stuff that doesn&#8217;t work and they&#8217;ll come back. If they feel like they are part of a neighborhood and they&#8217;re chipping in for the success of that neighborhood, that goes a long way.</p>
]]></content:encoded>
			<wfw:commentRss>http://nahummadrid.com/blog/2010/04/so-your-bp-site-is-up-now-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
