<?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"

			>

	<channel>
		<title>BuddyPress.org &#187; All Posts</title>
		<atom:link href="http://buddypress.org/support/forum/your-buddypress/feed/" rel="self" type="application/rss+xml" />
		<link>http://buddypress.org/support/forum/your-buddypress/feed/</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 14:00:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.4-alpha-4946</generator>
		<language>en-US</language>

		
		
					
				<item>
					<guid>http://buddypress.org/support/topic/edit-profile-link-leads-to-blank-page/#post-166210</guid>
					<title><![CDATA[Reply To: Edit Profile Link Leads to Blank Page]]></title>
					<link>http://buddypress.org/support/topic/edit-profile-link-leads-to-blank-page/#post-166210</link>
					<pubDate>Mon, 17 Jun 2013 17:16:05 +0000</pubDate>
					<dc:creator>nmedia (najeebmedia.com)</dc:creator>

					<description>
						<![CDATA[
						<p><a href="http://buddypress.org/community/members/garethmartin/" rel="nofollow">@garethmartin</a> you Rock!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/delicious-snaps/#post-166191</guid>
					<title><![CDATA[Reply To: Delicious Snaps]]></title>
					<link>http://buddypress.org/support/topic/delicious-snaps/#post-166191</link>
					<pubDate>Mon, 17 Jun 2013 05:30:51 +0000</pubDate>
					<dc:creator>hkcharlie</dc:creator>

					<description>
						<![CDATA[
						<p>what happened to this website ?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/notifications-template/#post-166076</guid>
					<title><![CDATA[Reply To: Notifications Template]]></title>
					<link>http://buddypress.org/support/topic/notifications-template/#post-166076</link>
					<pubDate>Fri, 14 Jun 2013 20:12:29 +0000</pubDate>
					<dc:creator>Cidade Sonho</dc:creator>

					<description>
						<![CDATA[
						<p>Work like a charm *&#8211;* Thaaanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/notifications-template/#post-166070</guid>
					<title><![CDATA[Reply To: Notifications Template]]></title>
					<link>http://buddypress.org/support/topic/notifications-template/#post-166070</link>
					<pubDate>Fri, 14 Jun 2013 18:39:59 +0000</pubDate>
					<dc:creator>Tecca</dc:creator>

					<description>
						<![CDATA[
						<p>You can make your own. Here&#8217;s mine as an example. You&#8217;ll need to tinker around with the CSS or code if you&#8217;d like to display them differently. What the below does is it shows a number (the amount of notifications you have) when you have one or more. It is hidden when there are none to display. Hovering over the number will display your notifications in a drop-down.</p>
<p>Place into bp-custom.php:
<pre><code>/**
* Add Notification number to template
*/
function my_bp_adminbar_notifications_menu() {
global $bp;

if ( !is_user_logged_in() )
    return false;

echo &#039;&lt;div class=&quot;notices&quot;&gt;&lt;ul class=&quot;notices&quot;&gt;&#039;;
_e( &#039;&#039;, &#039;buddypress&#039; );

if ( $notifications = bp_core_get_notifications_for_user( $bp-&gt;loggedin_user-&gt;id ) ) { ?&gt;
    &lt;li class=&quot;parent&quot;&gt;&lt;span class=&quot;notice-badge&quot;&gt;&lt;?php echo count( $notifications ) ?&gt;&lt;/span&gt;
&lt;?php
}

echo &#039;&lt;/a&gt;&#039;;
echo &#039;&lt;ul class=&quot;sub-menu&quot;&gt;&#039;;

if ( $notifications ) {
    $counter = 0;
    for ( $i = 0; $i &lt; count($notifications); $i++ ) {
        $alt = ( 0 == $counter % 2 ) ? &#039; class=&quot;alt&quot;&#039; : &#039;&#039;; ?&gt;

        &lt;li&lt;?php echo $alt ?&gt;&gt;&lt;?php echo $notifications[$i] ?&gt;&lt;/li&gt;

        &lt;?php $counter++;
    }
} else { ?&gt;

    &lt;li&gt;&lt;a href=&quot;&lt;?php echo $bp-&gt;loggedin_user-&gt;domain ?&gt;&quot;&gt;&lt;?php _e( &#039;You have no new alerts.&#039;, &#039;buddypress&#039; ); ?&gt;&lt;/a&gt;&lt;/li&gt;

&lt;?php
}

echo &#039;&lt;/ul&gt;&lt;/li&gt;&#039;;
echo &#039;&lt;/ul&gt;&lt;/div&gt;&#039;;
}</code></pre>
<p>CSS:
<pre><code>/*-------------------------- Notification dropdown -----------------------------------*/
.notice-badge { font-weight: bold; cursor: default; background: #d33939; padding: 0 3px; border-radius: 10px }
.parent.user-bar { width: 86px; text-align:left; float: right; font-weight: bold; }
.notices { float: right; margin:0; line-height: 45px; z-index: 9999; }
.notices a { color: #ffffff; }
.notices ul, .notices { margin:0 2px 0 0; padding:0; list-style-type:none; list-style-position:outside; position:relative; }
.notices ul a:link, .notices ul a:active, .notices ul a:visited { display:block; padding: 0; text-decoration:none; }
.notices ul ul a:link, .notices ul ul a:active, .notices ul ul a:visited { width: 480px; display:block; padding:0 7px; text-decoration:none; }
.notices ul ul a:hover { color: #0d385f; text-shadow: none; }
.notices ul li { float:left; position:relative; background:none; padding:0 12px; }
.notices ul li:hover { transition: all 100ms ease-in; }
.notices ul ul { width: 480px; line-height: 35px; background: #ffffff; position:absolute; right: 0; top:45px; text-align:left; padding:0; display:none; border:1px solid #eeeeee; border-bottom:none; border-top:none; box-shadow:0 0 2px rgba(0, 0, 0, 0.15), 0 3px 5px rgba(0, 0, 0, 0.1); }
.notices ul ul a { color:#248361; font-weight: bold; }
.notices ul li ul a { float:left; }
.notices ul li ul ul { left:-170px; top:2px; margin:0px; border-right:3px solid #cccccc; border-top:1px solid #eeeeee; }
.notices ul li ul li { width: 480px; padding:0; margin:0; border-bottom:1px solid #eeeeee; max-width:none; list-style-type:none; text-shadow: none; }
.notices ul li ul li:hover { background: #f5f5f5; }
.noticesn ul li:hover ul ul, ul li:hover ul ul ul, ul li:hover ul ul ul ul { display:none; }
.notices ul li:hover ul, .notices ul li li:hover ul, .notices ul li li li:hover ul, .notices ul li li li li:hover ul { display:block; }
.notices ul li ul.children li { list-style-type:none; }
.notices ul li ul li.current-menu-item { background:#f5f5f5; }
.notices ul li ul li.current-menu-item a { color:#585858; }
.notices ul li.current-menu-item span { color:#585858; }
.notices ul li.parent { background-image: url(images/menu-arrow-transparent.png); background-position: center center; background-repeat: no-repeat; }
.notices ul li.parent:hover { background-image: url(images/menu-arrow1.png); background-position: 14px 36px; background-repeat: no-repeat; }
.notices ul li ul li.parent:hover { background-image: url(images/menu-arrow-left.png); background-position: 152px center; background-repeat: no-repeat; }</code></pre>
<p>Place into header.php or wherever you&#8217;d like your notifications shown:<br />
&lt;?php my_bp_adminbar_notifications_menu()?&gt;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/notifications-template/#post-166043</guid>
					<title><![CDATA[[Resolved] Notifications Template]]></title>
					<link>http://buddypress.org/support/topic/notifications-template/#post-166043</link>
					<pubDate>Fri, 14 Jun 2013 11:57:07 +0000</pubDate>
					<dc:creator>Cidade Sonho</dc:creator>

					<description>
						<![CDATA[
						<p>Hello BP &lt;3 Amazing Job! But I think we still need a Notifications Template.</p>
<p>Why? I don´t wanna use the admin bar.</p>
<p>My BP 1.8<br />
My WP 3.5.1</p>
<p>My BP <a href="http://www.stuffgrid.com" rel="nofollow">http://www.stuffgrid.com</a></p>
<p>I&#8217;m building my theme with bootstrap</p>
<p>You can see the credits in footer ^_^ thanks for all</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/firmasite-social-buddypress-bbpress-theme-based-on-bootstrap/page/2/#post-165917</guid>
					<title><![CDATA[Reply To: FirmaSite Social: Buddypress + bbPress theme based on Bootstrap]]></title>
					<link>http://buddypress.org/support/topic/firmasite-social-buddypress-bbpress-theme-based-on-bootstrap/page/2/#post-165917</link>
					<pubDate>Thu, 13 Jun 2013 11:31:00 +0000</pubDate>
					<dc:creator>Unsal Korkmaz</dc:creator>

					<description>
						<![CDATA[
						<p>Spanish Translation for FirmaSite theme, BuddyPress and bbPress plugins:<br />
<a href="http://theme.firmasite.com/spanish-translation/" rel="nofollow">http://theme.firmasite.com/spanish-translation/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/firmasite-social-buddypress-bbpress-theme-based-on-bootstrap/page/2/#post-165698</guid>
					<title><![CDATA[Reply To: FirmaSite Social: Buddypress + bbPress theme based on Bootstrap]]></title>
					<link>http://buddypress.org/support/topic/firmasite-social-buddypress-bbpress-theme-based-on-bootstrap/page/2/#post-165698</link>
					<pubDate>Mon, 10 Jun 2013 14:52:14 +0000</pubDate>
					<dc:creator>Unsal Korkmaz</dc:creator>

					<description>
						<![CDATA[
						<p>FirmaSite 1.1.4 released. </p>
<p>Biggest improvement is adding Flatly named theme style. You can check demo here:<br />
<a href="http://demo.theme.firmasite.com/?style=flatly" rel="nofollow">http://demo.theme.firmasite.com/?style=flatly</a></p>
<p>You can read other details of changes here:<br />
<a href="http://theme.firmasite.com/category/changelog/" rel="nofollow">http://theme.firmasite.com/category/changelog/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/call-specific-user-profile-fields-to-a-page/#post-165466</guid>
					<title><![CDATA[Reply To: Call specific User profile fields to a page.]]></title>
					<link>http://buddypress.org/support/topic/call-specific-user-profile-fields-to-a-page/#post-165466</link>
					<pubDate>Thu, 06 Jun 2013 16:59:40 +0000</pubDate>
					<dc:creator>Kingrammer</dc:creator>

					<description>
						<![CDATA[
						<p>some more details if they will help, </p>
<p>It&#8217;s a brand new install of wordpress and buddypress. a multisite install, subdomains.</p>
<p>The only other plugin is Theme My Login. Custom Community Theme being used at the mo. </p>
<p>Would someone give me a nudge? Thank you so much to anyone with suggestions. Learning Buddypress and reading through the Ofcom radio broadcasting guides at the same time are pickling my brain!1</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/call-specific-user-profile-fields-to-a-page/#post-165426</guid>
					<title><![CDATA[Call specific User profile fields to a page.]]></title>
					<link>http://buddypress.org/support/topic/call-specific-user-profile-fields-to-a-page/#post-165426</link>
					<pubDate>Wed, 05 Jun 2013 20:29:58 +0000</pubDate>
					<dc:creator>Kingrammer</dc:creator>

					<description>
						<![CDATA[
						<p>Hello all, </p>
<p>I am building a multisite, with subdomains for the regional variations. </p>
<p>I would like to display a page, which in addition to the text and images the page will have, it also calls and prints a users details on that page. </p>
<p>This is a fairly new site, so it would be easy for me to make sure that the author for each page is the same user that I want to have the buddypress profile printed for. </p>
<p>I really hope this is an easy one &#8211; what do I type in the page to pull up a specific users details? I have read alot! I really have and cannot find any bit of copy / pastable code that does this.</p>
<p>The result i am trying to achieve is that I have a page which I have designed, which displays this fields as well, on the right. A registered user can update their variable details often, and this will update part of the page. </p>
<p>Thank you very much , </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://buddypress.org/support/topic/my-buddypress-website-myyummi/#post-165122</guid>
					<title><![CDATA[My BuddyPress website : &quot;mYYummi&quot;]]></title>
					<link>http://buddypress.org/support/topic/my-buddypress-website-myyummi/#post-165122</link>
					<pubDate>Fri, 31 May 2013 13:17:25 +0000</pubDate>
					<dc:creator>BigYummi</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>This is my first social website, &#8220;mYYummi&#8221;, created with buddypress.<br />
I try to make a french website about sharing recipes.</p>
<p><a href="http://www.myyummi.com" rel="nofollow">http://www.myyummi.com</a><br />
login : demo<br />
password : demo</p>
<p>thx</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

