<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for BP-Tricks</title>
	<atom:link href="http://bp-tricks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bp-tricks.com</link>
	<description></description>
	<lastBuildDate>Mon, 20 Feb 2012 06:30:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Creating a custom Front Page for your BuddyPress Groups by Chiinook</title>
		<link>http://bp-tricks.com/featured/creating-a-custom-front-page-for-your-buddypress-groups/#comment-3201</link>
		<dc:creator>Chiinook</dc:creator>
		<pubDate>Mon, 20 Feb 2012 06:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1096#comment-3201</guid>
		<description>Well anyway, the point is in the query arguments

$args = array( &#039;post_type&#039; =&gt; &#039;page&#039;, &#039;pagename&#039; =&gt; bp_the_group() ); 
query_posts( $args ); 
while ( have_posts() ) : the_post(); 
the_title(); 
the_content(); 
edit_post_link()
endwhile;</description>
		<content:encoded><![CDATA[<p>Well anyway, the point is in the query arguments</p>
<p>$args = array( &#8216;post_type&#8217; =&gt; &#8216;page&#8217;, &#8216;pagename&#8217; =&gt; bp_the_group() );<br />
query_posts( $args );<br />
while ( have_posts() ) : the_post();<br />
the_title();<br />
the_content();<br />
edit_post_link()<br />
endwhile;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a custom Front Page for your BuddyPress Groups by Chiinook</title>
		<link>http://bp-tricks.com/featured/creating-a-custom-front-page-for-your-buddypress-groups/#comment-3200</link>
		<dc:creator>Chiinook</dc:creator>
		<pubDate>Mon, 20 Feb 2012 06:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1096#comment-3200</guid>
		<description>Sorry, the query looks like this ...
&lt;code&gt; &#039;page&#039;, &#039;pagename&#039; =&gt; bp_the_group() ); 
&lt;code&gt;		query_posts( $args ); ?&gt;&lt;/code&gt;
&lt;code&gt;&lt;/code&gt;
&lt;code&gt;&lt;/code&gt;
&lt;code&gt; the_title(); &lt;/code&gt;
&lt;code&gt;	&lt;/code&gt;
&lt;code&gt;	&lt;/code&gt;
&lt;code&gt;	&lt;/code&gt;
&lt;code&gt;&lt;?php edit_post_link( __( &#039;{ Edit }&#039;, &#039;woothemes&#039; ), &#039;&#039;, &#039;&#039; ); ?&gt;&lt;/code&gt;
&lt;code&gt;&lt;/code&gt;
&lt;code&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sorry, the query looks like this &#8230;<br />
<code> 'page', 'pagename' =&gt; bp_the_group() );<br />
</code><code>		query_posts( $args ); ?&gt;</code><br />
<code></code><br />
<code></code><br />
<code> the_title(); </code><br />
<code>	</code><br />
<code>	</code><br />
<code>	</code><br />
<code>&lt;?php edit_post_link( __( &#039;{ Edit }&#039;, &#039;woothemes&#039; ), &#039;', '' ); ?&gt;</code><br />
<code></code><br />
<code></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a custom Front Page for your BuddyPress Groups by Chiinook</title>
		<link>http://bp-tricks.com/featured/creating-a-custom-front-page-for-your-buddypress-groups/#comment-3199</link>
		<dc:creator>Chiinook</dc:creator>
		<pubDate>Mon, 20 Feb 2012 06:18:40 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1096#comment-3199</guid>
		<description>Using the same logic of &quot;tricking&quot; wp by overlapping group and page slugs, wouldn&#039;t it be possible to create a page hierarchy under the bp auto-generated &quot;Groups&quot; page and pull page content from there?

I gave it a try and created a set of matching bp groups and wp child-pages (under the &quot;groups&quot; page). Then I inserted the following page query into my empty groups/single/front.php template.

&lt;code&gt;
 &#039;page&#039;, &#039;pagename&#039; =&gt; bp_the_group() ); 
		query_posts( $args ); ?&gt;





 the_title(); 

	
	
	

&lt;?php edit_post_link( __( &#039;{ Edit }&#039;, &#039;mysite&#039; ), &#039;&#039;, &#039;&#039; ); ?&gt;


	
 
&lt;/code&gt;

This renders the titles and content from ALL pages that match bp-group names ... hmmm. Do I need to do something with my query or loop to indicate that &lt;code&gt; &#039;pagename&#039; =&gt; bp_the_group()&lt;/code&gt; refers only to THIS group&#039;s name?

Other than that hitch, this seems to be a good alternative to creating a separate cpt.</description>
		<content:encoded><![CDATA[<p>Using the same logic of &#8220;tricking&#8221; wp by overlapping group and page slugs, wouldn&#8217;t it be possible to create a page hierarchy under the bp auto-generated &#8220;Groups&#8221; page and pull page content from there?</p>
<p>I gave it a try and created a set of matching bp groups and wp child-pages (under the &#8220;groups&#8221; page). Then I inserted the following page query into my empty groups/single/front.php template.</p>
<p><code><br />
 'page', 'pagename' =&gt; bp_the_group() );<br />
		query_posts( $args ); ?&gt;</p>
<p> the_title(); </p>
<p>&lt;?php edit_post_link( __( &#039;{ Edit }&#039;, &#039;mysite&#039; ), &#039;', '' ); ?&gt;</p>
<p></code></p>
<p>This renders the titles and content from ALL pages that match bp-group names &#8230; hmmm. Do I need to do something with my query or loop to indicate that <code> 'pagename' =&gt; bp_the_group()</code> refers only to THIS group&#8217;s name?</p>
<p>Other than that hitch, this seems to be a good alternative to creating a separate cpt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BuddyPress Shortcodes Plugin by Johnny</title>
		<link>http://bp-tricks.com/featured/buddypress-shortcodes-plugin/#comment-3192</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Sun, 19 Feb 2012 05:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1388#comment-3192</guid>
		<description>Hi,

Can you make an 11th short code that gets the current user that&#039;s logged in profile avatar?

I need it for a theme I&#039;m redesigning.

Is this possible? I want to use a short code within a post to do this. Not do it via PHP.

Thanks

Johnny</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can you make an 11th short code that gets the current user that&#8217;s logged in profile avatar?</p>
<p>I need it for a theme I&#8217;m redesigning.</p>
<p>Is this possible? I want to use a short code within a post to do this. Not do it via PHP.</p>
<p>Thanks</p>
<p>Johnny</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add @mentions auto-complete to your BuddyPress site with the BP Labs plugin by Charlie</title>
		<link>http://bp-tricks.com/featured/add-mentions-auto-complete-to-your-buddypress-site-with-the-bp-labs-plugin/#comment-3180</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Wed, 15 Feb 2012 06:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1461#comment-3180</guid>
		<description>Yes, I would agree with Darin.  For my website, the whole point of using this plugin is because people don&#039;t know the username, so therefore they wouldn&#039;t be able to add it in... But I love it. Is there a way to be able to type @ and have the list show up?  GREAT JOB I really hope this would be a quick fix!</description>
		<content:encoded><![CDATA[<p>Yes, I would agree with Darin.  For my website, the whole point of using this plugin is because people don&#8217;t know the username, so therefore they wouldn&#8217;t be able to add it in&#8230; But I love it. Is there a way to be able to type @ and have the list show up?  GREAT JOB I really hope this would be a quick fix!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easily hide specific tabs on BuddyPress member and group pages by Rick Roberts</title>
		<link>http://bp-tricks.com/design/easily-hide-specific-tabs-on-buddypress-member-and-group-pages/#comment-3174</link>
		<dc:creator>Rick Roberts</dc:creator>
		<pubDate>Mon, 13 Feb 2012 21:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1526#comment-3174</guid>
		<description>Wow, you don’t know how hard I have been looking for this! Thanks so much.

I wonder if you might answer another question. I want to put a Members tab on the BP navbar. Is that just as easy?</description>
		<content:encoded><![CDATA[<p>Wow, you don’t know how hard I have been looking for this! Thanks so much.</p>
<p>I wonder if you might answer another question. I want to put a Members tab on the BP navbar. Is that just as easy?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BuddyPress Shortcodes Plugin by Natalie @ GoForFun.com.au</title>
		<link>http://bp-tricks.com/featured/buddypress-shortcodes-plugin/#comment-3157</link>
		<dc:creator>Natalie @ GoForFun.com.au</dc:creator>
		<pubDate>Sun, 12 Feb 2012 05:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1388#comment-3157</guid>
		<description>I&#039;m looking for these two for a very long time.. I agree it would be helpful to have it in this wonderful plugin!</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking for these two for a very long time.. I agree it would be helpful to have it in this wonderful plugin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying certain profile fields on your members profile page by Vanima</title>
		<link>http://bp-tricks.com/snippets/displaying-certain-profile-fields-on-your-members-profile-page/#comment-3148</link>
		<dc:creator>Vanima</dc:creator>
		<pubDate>Sat, 11 Feb 2012 12:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://bp-tricks.com/?p=1294#comment-3148</guid>
		<description>Hi Bowe 

Nice trick. As I asume you have some experience with the whole buddypress stuff you may be able to help me with a huge problem I&#039;m facing.

I&#039;d like to change the xprofile-fields to have profile fields for a couple (not all fields but a few). For example if there&#039;s the question:
How old are you.
Here I would like to have to dateboxes instead of one. So their must be two in the registration and in the actual profile.

Do you have any idea how to manage this?

Thanks a lot and I really like your great tips

Vanima</description>
		<content:encoded><![CDATA[<p>Hi Bowe </p>
<p>Nice trick. As I asume you have some experience with the whole buddypress stuff you may be able to help me with a huge problem I&#8217;m facing.</p>
<p>I&#8217;d like to change the xprofile-fields to have profile fields for a couple (not all fields but a few). For example if there&#8217;s the question:<br />
How old are you.<br />
Here I would like to have to dateboxes instead of one. So their must be two in the registration and in the actual profile.</p>
<p>Do you have any idea how to manage this?</p>
<p>Thanks a lot and I really like your great tips</p>
<p>Vanima</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The current state of BuddyPress: A critical analysis by uloga</title>
		<link>http://bp-tricks.com/featured/the-current-state-of-buddypress-a-critical-anylyzis-of-the-project/#comment-3146</link>
		<dc:creator>uloga</dc:creator>
		<pubDate>Sat, 11 Feb 2012 10:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://foksite.dev/infinity/?p=132#comment-3146</guid>
		<description>bp has become a fucking joke. I mean check out the core code , if you know little php you&#039;ll see all the unnecessary function calls and code duplication. I&#039;ve used the old version of BP developed by Andy and it was OK back then, but now the 1.5 ,it&#039;s a fucking mess, especially the FUGLY default theme. FUJ BAH! Also the CORE DEVS and community seem to be ignorant toward others  who wants to get involved!</description>
		<content:encoded><![CDATA[<p>bp has become a fucking joke. I mean check out the core code , if you know little php you&#8217;ll see all the unnecessary function calls and code duplication. I&#8217;ve used the old version of BP developed by Andy and it was OK back then, but now the 1.5 ,it&#8217;s a fucking mess, especially the FUGLY default theme. FUJ BAH! Also the CORE DEVS and community seem to be ignorant toward others  who wants to get involved!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The current state of BuddyPress: A critical analysis by bal intermobil</title>
		<link>http://bp-tricks.com/featured/the-current-state-of-buddypress-a-critical-anylyzis-of-the-project/#comment-3145</link>
		<dc:creator>bal intermobil</dc:creator>
		<pubDate>Sat, 11 Feb 2012 10:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://foksite.dev/infinity/?p=132#comment-3145</guid>
		<description>Heya i&#039;m for the primary time here. I found this board and I in finding It truly useful &amp; it helped me out a lot. I&#039;m hoping to offer something again and aid others such as you helped me.</description>
		<content:encoded><![CDATA[<p>Heya i&#8217;m for the primary time here. I found this board and I in finding It truly useful &amp; it helped me out a lot. I&#8217;m hoping to offer something again and aid others such as you helped me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

