<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums User Favorites: LordCoder</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums User Favorites: LordCoder</description>
<language>en</language>
<pubDate>Sun, 23 Nov 2008 00:10:16 +0000</pubDate>

<item>
<title>LordCoder on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2714</link>
<pubDate>Sun, 31 Dec 2006 08:26:25 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2714@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;K , thanks &#60;strong&#62;thomasklaiber&#60;/strong&#62; , i ill create a new plugin so i don't lose the changes on a specific update :P&#60;/p&#62;
&#60;p&#62;PS : i am from Morroco , but i can speak French , German , English ...
&#60;/p&#62;</description>
</item>
<item>
<title>thomasklaiber on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2704</link>
<pubDate>Sat, 30 Dec 2006 23:13:29 +0000</pubDate>
<dc:creator>thomasklaiber</dc:creator>
<guid isPermaLink="false">2704@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah ... it's called &#60;code&#62;profile_menu&#60;/code&#62; because it's for your profile and not for the whole board =)&#60;/p&#62;
&#60;p&#62;You can add this function (with a new name like &#60;code&#62;profile_menu_global&#60;/code&#62;) into a plugin so you don't have to change the core files!&#60;/p&#62;
&#60;p&#62;Where are you from, Germany? I'm from Germany if you need more help ;-)
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2702</link>
<pubDate>Sat, 30 Dec 2006 19:38:47 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2702@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok the problem is solved by using this function instead of the default profile_menu :&#60;br /&#62;
&#60;code&#62;function profile_menu() {&#60;br /&#62;
	global $bb, $bbdb, $bb_current_user, $user_id, $profile_menu, $self, $profile_page_title, $bb_table_prefix;&#60;br /&#62;
	$user_id=(isset($user_id)) ? $user_id : $bb_current_user-&#38;gt;ID;&#60;br /&#62;
	$list  = &#38;quot;&#38;lt;ul id=&#38;#39;profile-menu&#38;#39;&#38;gt;&#38;quot;;&#60;br /&#62;
	$list .= &#38;quot;nt&#38;lt;li&#38;quot; . ( ( $self ) ? &#38;#39;&#38;#39; : &#38;#39; class=&#38;quot;current&#38;quot;&#38;#39; ) . &#38;#39;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39; . get_user_profile_link( $user_id ) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Profile&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;#39;;&#60;br /&#62;
	if ( isset( $profile_menu ) ) :&#60;br /&#62;
	foreach ($profile_menu as $item) {&#60;br /&#62;
		// 0 = name, 1 = users cap, 2 = others cap, 3 = file&#60;br /&#62;
		$class = &#38;#39;&#38;#39;;&#60;br /&#62;
		if ( $item[3] == $self ) {&#60;br /&#62;
			$class = &#38;#39; class=&#38;quot;current&#38;quot;&#38;#39;;&#60;br /&#62;
			$profile_page_title = $item[0];&#60;br /&#62;
		}&#60;br /&#62;
		if ( can_access_tab( $item, $bb_current_user-&#38;gt;ID, $user_id ) )&#60;br /&#62;
			if ( file_exists($item[3]) &#124;&#124; function_exists($item[3]) )&#60;br /&#62;
				$list .= &#38;quot;nt&#38;lt;li$class&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot; . wp_specialchars( get_profile_tab_link($user_id, $item[0]) ) . &#38;quot;&#38;#39;&#38;gt;{$item[0]}&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;&#60;br /&#62;
	}&#60;br /&#62;
	endif;&#60;br /&#62;
	$list .= &#38;quot;n&#38;lt;/ul&#38;gt;&#38;quot;;&#60;br /&#62;
	echo $list;&#60;br /&#62;
}&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2615</link>
<pubDate>Tue, 26 Dec 2006 11:59:11 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2615@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok , i see that my messages are incomprehensible ( normal , i am not a native english speaker ) , i ill try again ( my english will suck a little :P ) .&#60;/p&#62;
&#60;p&#62;I have this on my &#60;strong&#62;my-templates/footer.php&#60;/strong&#62; :&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php if ( $bb_current_user-&#38;gt;ID ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;li&#38;gt;&#38;lt;h2 class=&#38;quot;vcard&#38;quot;&#38;gt;Profile&#38;lt;/h2&#38;gt;&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;li&#38;gt;&#60;br /&#62;
&#38;lt;?php profile_menu(); ?&#38;gt;&#60;br /&#62;
&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;My goal is to display the avaible profil options for the connected user if no other user's profil is viewed .&#60;/p&#62;
&#60;p&#62;But it doesnt work until i dont go to another user's profil and displays this error : &#60;/p&#62;
&#60;p&#62;&#60;code&#62;Warning: Invalid argument supplied for foreach() in /home/httpd/bouazza/bouazza.franceserv.com/sbouazza/forums/bb-includes/template-functions.php on line 59&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;And only one item is viewed , Profile , and it contains a bad link ( &#60;a href=&#34;http://bouazza.franceserv.com/sbouazza/forums/profile/,&#34; rel=&#34;nofollow&#34;&#62;http://bouazza.franceserv.com/sbouazza/forums/profile/,&#60;/a&#62; without an user ID ) .&#60;/p&#62;
&#60;p&#62;But if i am viewing an user's profil , the menu is correctly displayed , and allthing is fine .&#60;/p&#62;
&#60;p&#62;I Hope I can get more replys now .&#60;/p&#62;
&#60;p&#62;Thanks !&#60;/p&#62;
&#60;p&#62;PS : It will be great if we can speak here on this board in another language like French , German ... espiecially for guys like me who ar'nt familiar with English :P .&#60;/p&#62;
&#60;p&#62;Bouazza .
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2605</link>
<pubDate>Mon, 25 Dec 2006 07:30:21 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2605@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;No one ?
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2600</link>
<pubDate>Sun, 24 Dec 2006 17:28:53 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2600@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I edited correctly the message , sorry if it was incomprehensible .&#60;br /&#62;
I use that code on footer.php without modifying de template-functions.php file .&#60;br /&#62;
Normally , it shows only the profil menu if a user's profil is viewed , but i wanted that the profil menu will be displayed using the current user's settings if no profil is viewed .
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2599</link>
<pubDate>Sun, 24 Dec 2006 17:10:55 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2599@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Where are you changing that?  I assume you're using my Private Messages plugin (hope you like it), and if you're changing something in functions.php or template-functions.php you could have an adverse effect on plugins.&#60;/p&#62;
&#60;p&#62;I also don't exactly understand why you would test if the current user has an ID.  You might want to, instead, test if the current user can do something instead of having an ID.&#60;/p&#62;
&#60;p&#62;Plus, I don't think you want to use &#124;&#124; in that setup.  You probably want to use &#38;#38;&#38;amp; so that if the profile exists AND something else, then it'll display it.&#60;/p&#62;
&#60;p&#62;Possibly all or none of the above :)
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "profile_menu doesnt work on all pages"</title>
<link>http://bbpress.org/forums/topic/profile_menu-doesnt-work-on-all-pages#post-2598</link>
<pubDate>Sun, 24 Dec 2006 16:52:54 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2598@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi all ,&#60;/p&#62;
&#60;p&#62;i do experience a problem with my forum if i use :&#60;br /&#62;
&#60;code&#62;&#38;lt;?php if ( $bb_current_user-&#38;gt;ID ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;li&#38;gt;&#38;lt;h2 class=&#38;quot;vcard&#38;quot;&#38;gt;Profile&#38;lt;/h2&#38;gt;&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;li&#38;gt;&#60;br /&#62;
&#38;lt;?php profile_menu(); ?&#38;gt;&#60;br /&#62;
&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;instead of :&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php if ( is_bb_profile() ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;li&#38;gt;&#38;lt;h2 class=&#38;quot;vcard&#38;quot;&#38;gt;Profile&#38;lt;/h2&#38;gt;&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;li&#38;gt;&#60;br /&#62;
&#38;lt;?php profile_menu(); ?&#38;gt;&#60;br /&#62;
&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I wanted only that it displays the avaible profile menu for the connected user if no other profile is viewed , but it doesnt work and returns this error message :&#60;br /&#62;
&#60;code&#62;Warning: Invalid argument supplied for foreach() in /home/httpd/bouazza/bouazza.franceserv.com/sbouazza/forums/bb-includes/template-functions.php on line 59&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Can someone help me ?&#60;/p&#62;
&#60;p&#62;Thanks and merry christmas !&#60;/p&#62;
&#60;p&#62;Bouazza .
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "Determine topic's status"</title>
<link>http://bbpress.org/forums/topic/determine-topics-status#post-2558</link>
<pubDate>Fri, 22 Dec 2006 13:07:54 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2558@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks &#60;strong&#62;ardenfrost&#60;/strong&#62; , i ill use get_topic_resolved .
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Determine topic's status"</title>
<link>http://bbpress.org/forums/topic/determine-topics-status#post-2514</link>
<pubDate>Thu, 21 Dec 2006 15:17:07 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2514@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The function &#60;code&#62;topic_resolved()&#60;/code&#62; echo's back whether the topic is resolved, not resolved, or not a support question.  You can even change what it echo's by passing strings to the function.&#60;/p&#62;
&#60;p&#62;Otherwise you want the function &#60;code&#62;get_topic_resolved($id)&#60;/code&#62; which will return yes, no, or mu (for it is resolved, it's not resolved, or it's not a support question).&#60;/p&#62;
&#60;p&#62;But if you don't like that method, you can always get it straight from the database... it's just more work for the server that way.
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-2509</link>
<pubDate>Thu, 21 Dec 2006 08:24:24 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2509@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is the SAFE_MODE on ?
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "Determine topic's status"</title>
<link>http://bbpress.org/forums/topic/determine-topics-status#post-2508</link>
<pubDate>Thu, 21 Dec 2006 08:22:42 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">2508@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello ,&#60;/p&#62;
&#60;p&#62;how to get topic's status ?&#60;/p&#62;
&#60;p&#62;I mean something like Resolved , Not a support question ...&#60;/p&#62;
&#60;p&#62;Thanks ,&#60;/p&#62;
&#60;p&#62;Bouazza .
&#60;/p&#62;</description>
</item>
<item>
<title>culturemark on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1644</link>
<pubDate>Sun, 26 Nov 2006 16:39:02 +0000</pubDate>
<dc:creator>culturemark</dc:creator>
<guid isPermaLink="false">1644@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Standard WordPress location:&#60;/p&#62;
&#60;p&#62;/wp-content/themes/blix/&#60;/p&#62;
&#60;p&#62;BBPress is located:&#60;/p&#62;
&#60;p&#62;/forum/&#60;/p&#62;
&#60;p&#62;BBPress template is:&#60;/p&#62;
&#60;p&#62;/forum/my-templates/
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1642</link>
<pubDate>Sun, 26 Nov 2006 15:47:48 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">1642@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;where's blix located ? on bbpress or wordpress templates folder ?
&#60;/p&#62;</description>
</item>
<item>
<title>culturemark on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1639</link>
<pubDate>Sun, 26 Nov 2006 10:41:29 +0000</pubDate>
<dc:creator>culturemark</dc:creator>
<guid isPermaLink="false">1639@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think it's the built in functions in Blix, that causes the problems. Like this string in the header of Blix:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php require_once get_template_directory().&#34;/BX_functions.php&#34;; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;When BBPress uses that header it generates an error.&#60;/p&#62;
&#60;p&#62;It's my theory anyway.
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1637</link>
<pubDate>Sun, 26 Nov 2006 08:15:19 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">1637@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You need to change themes tags to bbpress ones , but like i do'nt have anything to do today , i ill do that for you ;-)
&#60;/p&#62;</description>
</item>
<item>
<title>culturemark on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1633</link>
<pubDate>Sat, 25 Nov 2006 23:54:07 +0000</pubDate>
<dc:creator>culturemark</dc:creator>
<guid isPermaLink="false">1633@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks great. I only want to know how you did it!&#60;/p&#62;
&#60;p&#62;I have this site:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.enghavepark.dk/&#34; rel=&#34;nofollow&#34;&#62;http://www.enghavepark.dk/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Using the Blix theme.&#60;/p&#62;
&#60;p&#62;I have bbpress here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.enghavepark.dk/forum/&#34; rel=&#34;nofollow&#34;&#62;http://www.enghavepark.dk/forum/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And I want the forum in the blix theme without the sidebar, but with the header and the footer.&#60;/p&#62;
&#60;p&#62;I've looked in the forum and know about the require_once in the config.php, but I can't get it to work. Perhaps the path is wrong. Could somone post a step by step guide for this.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>talkaboutdesign on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1364</link>
<pubDate>Mon, 13 Nov 2006 14:58:18 +0000</pubDate>
<dc:creator>talkaboutdesign</dc:creator>
<guid isPermaLink="false">1364@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thanks
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1330</link>
<pubDate>Sat, 11 Nov 2006 20:12:57 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">1330@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Awesome :D
&#60;/p&#62;</description>
</item>
<item>
<title>talkaboutdesign on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1326</link>
<pubDate>Sat, 11 Nov 2006 16:22:10 +0000</pubDate>
<dc:creator>talkaboutdesign</dc:creator>
<guid isPermaLink="false">1326@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;looks cool &#60;/p&#62;
&#60;p&#62;check out my design here&#60;br /&#62;
&#60;a href=&#34;http://www.talkaboutdesign.com/forum&#34; rel=&#34;nofollow&#34;&#62;http://www.talkaboutdesign.com/forum&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>LordCoder on "What do you think about my design ?"</title>
<link>http://bbpress.org/forums/topic/what-do-you-think-about-my-design-#post-1325</link>
<pubDate>Sat, 11 Nov 2006 15:07:26 +0000</pubDate>
<dc:creator>LordCoder</dc:creator>
<guid isPermaLink="false">1325@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi all ,&#60;/p&#62;
&#60;p&#62;what do you think about my BBPress customization ? here's the URI of my forum : &#60;a href=&#34;http://bouazza.franceserv.com/forum/&#34;&#62;Forum de référencement&#60;/a&#62; ( its in french ) .&#60;/p&#62;
&#60;p&#62;--&#60;/p&#62;
&#60;p&#62;Bouazza .
&#60;/p&#62;</description>
</item>

</channel>
</rss>
