<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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"
		>
	<channel>
		<title>bbPress Support Forums &#187; Tag: installation - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/installation</link>
		<description>bbPress Support Forums &#187; Tag: installation - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 02:23:24 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/installation" rel="self" type="application/rss+xml" />

		<item>
			<title>freequency on "[resolved] [resolved] My bbpress HOW TO / tutorial"</title>
			<link>http://bbpress.org/forums/topic/my-bbpress-how-to-tutorial#post-97402</link>
			<pubDate>Fri, 20 Jan 2012 13:55:38 +0000</pubDate>
			<dc:creator>freequency</dc:creator>
			<guid isPermaLink="false">97402@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I love bbPress for it's simplistic design, but setting it up can be a bitch especially if you don't care for standard sidebars &#38; widgets like me, so:<br />
Getting bbpress to work wonders is as easy as 0,1,2,3,4,5,6,7,8,9,10,11,12!!<br />
On 2012-01-19, this is what I did to originally setup my <a href="http://forums.freequency.org/">forums for a free wireless network</a>:</p>
<p><strong>0)</strong> Pre-clarification: [???] means some number, like twenty[???] means twentyten or twentyeleven</p>
<p><strong>1)</strong> Downloaded most recent WordPress, setup database and installed it.</p>
<p><strong>2)</strong> Installed bbpress:<br />
go to <a href="http://yoursite.dom/wp-admin/" rel="nofollow">http://yoursite.dom/wp-admin/</a> &#62; Log in to admin &#62; Plugins &#62; Add New &#62; search for "bbpress" &#62; Install Now</p>
<p><strong>3)</strong> Copied contents of bbpress theme folder to wordpress theme folder:<br />
/wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???] to /wp-content/themes<br />
(this is done ONLY so that we can select the bbforums theme and it's handy templates: Please note that you should only make modifications in the /wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???] folder NOT the /wp-content/themes/bbp-twenty[???] folder as the bbpress plugin will not read those)</p>
<p><strong>4)</strong> Switched to the bbpress theme<br />
Log in to admin &#62; Appearance &#62; Themes &#62; under the "Available Themes" section I activated the "bbPress (Twenty [???])" Theme</p>
<p><strong>5)</strong> Created my home page, login page, register page, and lost password page:<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Home" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - Forums (index)"<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Login" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - User Login"<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Register" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - User Register"<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Lost Password" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - User Lost Password"</p>
<p><strong>6)</strong> Switched WordPress frontpage from the blog to my home/forums page:<br />
Log in to admin &#62; Settings &#62; Reading &#62; Front page displays &#62; Clicked "a static page..." &#62; set front page to "Home" (and left posts page blank)</p>
<p><strong>7)</strong> Allowed New Users to Register<br />
Log in to admin &#62; Settings &#62; General &#62; Under Membership I checked "Anyone can register"</p>
<p><strong>8)</strong> Created and Modified my header, footer, and sidebar files:<br />
All theme modifications MUST be done within the wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???] folder and not the folder you just copied to the wordpress theme folder as bbpress will only read files within in it's own local plugin (see <a href="http://trac.bbpress.org/ticket/3">#3</a>).<br />
The theme doesn't come with these files installed, so copy them from another theme like twenty[???]:<br />
wp-content/themes/twenty[???]/header.php to wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]<br />
wp-content/themes/twenty[???]/footer.php to wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]<br />
wp-content/themes/twenty[???]/sidebar.php to wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]<br />
I then stripped them to my satisfaction making sure to keep WordPress' header action hook, wp_head();, and then styled them accordingly.<br />
One of the things I added to the header.php was my menu and such:<br />
<code><br />
&#60;?php<br />
	$text .= '&#60;options&#62;';<br />
	if(is_user_logged_in()) {<br />
		global $current_user;<br />
		get_currentuserinfo();<br />
		$text .= 'You are logged in as <a href="/wp-admin/profile.php">'.$current_user-&#62;display_name.'</a> <br /><a href="/wp-admin/profile.php">Your Profile</a> &#124; <a href="/wp-admin/edit.php?post_type=topic">Your Topics</a> &#124; <a href="/wp-admin/edit.php?post_type=reply">Your Replies</a> &#124; <a href="'.wp_logout_url().'">Logout</a>';<br />
	}<br />
	else $text .= '<a href="?page_id=8">Login</a> &#124; <a href="?page_id=6">Register</a> &#124; <a href="?page_id=10">Lost Password</a>';<br />
	$text .= "<br />" . get_search_form(false);<br />
	$text .= '&#60;/options&#62;';</p>
<p>	echo $text;</p>
<p>?&#62;<br />
</code><br />
If a visitor is not logged in the above menu will show links to the pages I just created in <a href="http://trac.bbpress.org/ticket/5">#5</a>, but make sure that the page_id matches the correct page.  You can do this by checking the Permalink of that page:<br />
Log in to admin &#62; Pages &#62; All Pages &#62; select the page your interested in &#62; notice the page_id in the permalink &#38; make sure it matches in the header file.<br />
If a visitor is logged in, it will show who you are logged in as, give you a link to:<br />
your profile (/wp-admin/profile.php)<br />
your profile (/wp-admin/edit.php?post_type=topic)<br />
your posts (/wp-admin/edit.php?post_type=reply)<br />
and a link to logout ( wp_logout_url() )<br />
This menu will then print a search form.</p>
<p><strong>9)</strong> Installed Search bbPress plugin:<br />
Log in to admin &#62; Plugins &#62; Add New &#62; search for "search bbpress" &#62; Install Now<br />
If you don't do this, wordpress' search form won't search your forums.</p>
<p><strong>10)</strong>wordpress avatars &#38; bbPress Avatars:<br />
As of 2012-01-19, the latest version of WordPress (and therefore bbPress) has Gravitars support built in. So, if you sign up at <a href="https://en.gravatar.com/site/signup" rel="nofollow">https://en.gravatar.com/site/signup</a>, you can associate an email address with your avatar.  And if you also use that email address as the one you used for your wordpress/bbpress account then bbpress and wordpress will automatically show that avatar associated with the email address you supplied to gravitar.</p>
<p>Simple Local Avatars:<br />
If you're like me, you don't want to force your visitors to sign up with gravitar, so the simplest avatar solution I found was to install the "Simple Local Avatars" Plugin:<br />
Log in to admin &#62; Plugins &#62; Add New &#62; search for "Simple Local Avatars" &#62; Install Now<br />
An avatar section will now display at the bottom of your profile page at /wp-admin/profile.php</p>
<p><strong>11)</strong> Consolidating bbPress profile pages<br />
bbPress gives you the choice of editing your profile in two places, but since avatars only show up at /wp-admin/profile.php and not index.php?bbp_user=[???]&#38;edit=1 we will consolidate the profile editing to just /wp-admin/profile.php . To do this, we add the follwoing code to the end (but before the ?&#62; ) of the wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]/functions.php file:<br />
<code><br />
add_filter('bbp_get_user_edit_profile_url', 'my_bbp_get_user_edit_profile_url', 10, 0);<br />
function my_bbp_get_user_edit_profile_url () {<br />
	return "/wp-admin/profile.php";<br />
}<br />
</code><br />
This basically overwrites the bbp_get_user_edit_profile_url function whereever it's used.</p>
<p><strong>12)</strong> I'm done!  For now at least.  Hope that helps.  Those were the things I cared about.
</p>]]></description>
					</item>
		<item>
			<title>Anointed on "Installation and Style issues with custom theme. Almost there..."</title>
			<link>http://bbpress.org/forums/topic/installation-and-style-issues-with-custom-theme-almost-there#post-96336</link>
			<pubDate>Mon, 26 Dec 2011 03:17:29 +0000</pubDate>
			<dc:creator>Anointed</dc:creator>
			<guid isPermaLink="false">96336@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Not sure where you went wrong from what I can see. I do see that there is no css from bbpress in your theme anywhere.</p>
<p>As to your questions about sytles and functions, yes you can either combine them together or use include statements to include separate files for bbpress if you wish.
</p>]]></description>
					</item>
		<item>
			<title>coffeesocial on "Installation and Style issues with custom theme. Almost there..."</title>
			<link>http://bbpress.org/forums/topic/installation-and-style-issues-with-custom-theme-almost-there#post-96321</link>
			<pubDate>Sun, 25 Dec 2011 12:39:57 +0000</pubDate>
			<dc:creator>coffeesocial</dc:creator>
			<guid isPermaLink="false">96321@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi All!</p>
<p>I'm getting quite far and have overcome a few problems myself which has been fun, but I am stuck with the style issue.</p>
<p>My theme and test is here: <a href="http://www.coffeesocial.co.uk/forums/forum/coffee-social-forum/" rel="nofollow">http://www.coffeesocial.co.uk/forums/forum/coffee-social-forum/</a></p>
<p>I am running a theme called Continuum, with a child theme that adds a few extra bits to the main theme.</p>
<p>I got as far as installing the files from the settings folder into my child theme folder (actually functions.php and style.css were overwritten because Filezilla did not warn me!!!)</p>
<p>Was that supposed to happen? Because it messed up the theme (although bbPress page style looked miles better) it still did not look much better than what it currently is: <a href="http://www.coffeesocial.co.uk/forums/forum/coffee-social-forum/" rel="nofollow">http://www.coffeesocial.co.uk/forums/forum/coffee-social-forum/</a></p>
<p>That aside, I went back and replaced the functions and style files with the correct ones from the original child theme to make my website look and function right.</p>
<p>Can I merge the two files style and functions to then include both necesarry code elements to let my theme and bbPress look correct?</p>
<p>It would be stupid to let the bbPress style and funcions overwrite becasue then it would mess up everyones themes. What did you guys do to get it working on a custom theme (i.e. not the one that comes with bbPress).</p>
<p>Cheers :)
</p>]]></description>
					</item>
		<item>
			<title>Anointed on "installing theme within WordPress themed site"</title>
			<link>http://bbpress.org/forums/topic/installing-theme-within-wordpress-themed-site#post-94721</link>
			<pubDate>Sun, 27 Nov 2011 18:00:37 +0000</pubDate>
			<dc:creator>Anointed</dc:creator>
			<guid isPermaLink="false">94721@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I mentioned in some of your other posts that the docs you are following are for the old 1x bbPress plugin. There is not a theme manager for the new bbPress.</p>
<p>Right now there is just the one theme available which I see is running correctly on your site. I'm sure more themes are in the pipeline.
</p>]]></description>
					</item>
		<item>
			<title>3hreedee on "installing theme within WordPress themed site"</title>
			<link>http://bbpress.org/forums/topic/installing-theme-within-wordpress-themed-site#post-94712</link>
			<pubDate>Sun, 27 Nov 2011 10:32:46 +0000</pubDate>
			<dc:creator>3hreedee</dc:creator>
			<guid isPermaLink="false">94712@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I have installed BBPress into my wordpress site - <a href="http://www.3hreedee.com" rel="nofollow">http://www.3hreedee.com</a> </p>
<p>However at the moment it looks pretty blank, is there anyway of installing a theme to bbpress even though it is within a wordpress site? I have tried uploading themes into the FTP themes folder however cannot find anywhere within bbadmin that would allow me to install these?</p>
<p>My test link is here:http://www.3hreedee.com/forums/</p>
<p>Thanks for your help.</p>
<p>Regards<br />
Dan
</p>]]></description>
					</item>
		<item>
			<title>Fanoop on "Why isn&#039;t installation working for me???"</title>
			<link>http://bbpress.org/forums/topic/why-isnt-installation-working-for-me#post-93682</link>
			<pubDate>Tue, 25 Oct 2011 18:09:43 +0000</pubDate>
			<dc:creator>Fanoop</dc:creator>
			<guid isPermaLink="false">93682@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Brandon - Could you tell me what you did to correct the issue.  I seem to be having the same problem.  All I get when I try to run the installer is a blank screen.
</p>]]></description>
					</item>
		<item>
			<title>brandonharshe on "Why isn&#039;t installation working for me???"</title>
			<link>http://bbpress.org/forums/topic/why-isnt-installation-working-for-me#post-93635</link>
			<pubDate>Mon, 24 Oct 2011 05:57:33 +0000</pubDate>
			<dc:creator>brandonharshe</dc:creator>
			<guid isPermaLink="false">93635@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Nevermind. Figured it out.
</p>]]></description>
					</item>
		<item>
			<title>brandonharshe on "Why isn&#039;t installation working for me???"</title>
			<link>http://bbpress.org/forums/topic/why-isnt-installation-working-for-me#post-93634</link>
			<pubDate>Mon, 24 Oct 2011 05:39:29 +0000</pubDate>
			<dc:creator>brandonharshe</dc:creator>
			<guid isPermaLink="false">93634@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I followed the installation guide (I thought) and when I go to the intended URL (<a href="http://birthwithoutfearblog.com/forum" rel="nofollow">http://birthwithoutfearblog.com/forum</a>), there is nothing but a blank screen. I know it's probably something basic I didn't do, but I'm not sure what. Please help. Thanks.
</p>]]></description>
					</item>
		<item>
			<title>selise on "How can I just &quot;see&quot; my freaking Forum?"</title>
			<link>http://bbpress.org/forums/topic/how-can-i-just-see-my-freaking-forum#post-93475</link>
			<pubDate>Wed, 19 Oct 2011 13:36:19 +0000</pubDate>
			<dc:creator>selise</dc:creator>
			<guid isPermaLink="false">93475@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>you can use short codes listed here:</p>
<p><a href="http://bbpress.org/forums/topic/bbpress-20-shortcodes" rel="nofollow">http://bbpress.org/forums/topic/bbpress-20-shortcodes</a></p>
<p>but even easier, if you are ok with the default layout, is to just use the template, "bbPress - Forums (Index)" for the blank forum page you've created (under page attributes on the edit page).
</p>]]></description>
					</item>
		<item>
			<title>cmceezee on "How can I just &quot;see&quot; my freaking Forum?"</title>
			<link>http://bbpress.org/forums/topic/how-can-i-just-see-my-freaking-forum#post-93469</link>
			<pubDate>Wed, 19 Oct 2011 08:49:00 +0000</pubDate>
			<dc:creator>cmceezee</dc:creator>
			<guid isPermaLink="false">93469@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Is there a shortcode like, [bbPress] or should my installation have created a "Forums" page?</p>
<p>It seems ridiculus that I'd have to create a separate page, with hyperlinks to each of the seperate forums.  Can anyone help?  Sorry for being slow at this but I have been wasting time, searching forums and watching horrible YouTube.com videos just to get my users access to your Forum.  I heard it was the "best ever" and "simple" so I'm worried maybe that something didn't install right.</p>
<p>Would love help!  Thanks in advance!!
</p>]]></description>
					</item>
		<item>
			<title>bobbyh44 on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-93200</link>
			<pubDate>Wed, 12 Oct 2011 08:55:08 +0000</pubDate>
			<dc:creator>bobbyh44</dc:creator>
			<guid isPermaLink="false">93200@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi Voodoo,</p>
<p>Point taken. I've been a bit harsh on the Dev guys which I shouldn't have been. The system obviously does work fine as plenty of people use it. I'm just not very technically minded.</p>
<p>Good luck with the project, I'm sure it will be a success.
</p>]]></description>
					</item>
		<item>
			<title>ptruong on "Cannot Register and link forum"</title>
			<link>http://bbpress.org/forums/topic/cannot-register-and-link-forum#post-93191</link>
			<pubDate>Wed, 12 Oct 2011 04:19:56 +0000</pubDate>
			<dc:creator>ptruong</dc:creator>
			<guid isPermaLink="false">93191@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, I recently install bbpress on my site.  I created a login using the shortcodes but for one it prompts that you can't register and also if you do sign in using my admin it will show already signed in and will not go to the forum.  For the forum I cannot find a way to connect it to a page either.  Perhaps if anyone could shed some light on this that would be great.  Thank you very much
</p>]]></description>
					</item>
		<item>
			<title>Rev. Voodoo on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-93162</link>
			<pubDate>Tue, 11 Oct 2011 17:44:21 +0000</pubDate>
			<dc:creator>Rev. Voodoo</dc:creator>
			<guid isPermaLink="false">93162@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I used SMF years ago, it was poorly documented, and hell to use. </p>
<p>I'm not bashing SMF, the point is bbPress is brand new. The devs are creating a new product from scratch. You get a product, or documentation. It all takes time. Resources are finite. </p>
<p>It takes time to grow everything out. If more people don't volunteer their time, it is what it is. Do you have any idea how many people have worked on something like SMF? Or how long it's been around?</p>
<p>I'm not knocking anyone here, it's just good to have realistic expectations.
</p>]]></description>
					</item>
		<item>
			<title>bobbyh44 on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-93023</link>
			<pubDate>Fri, 07 Oct 2011 08:46:22 +0000</pubDate>
			<dc:creator>bobbyh44</dc:creator>
			<guid isPermaLink="false">93023@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>"After I installed it the first time it took me a couple of hours to find my forums page." - good that you persevered and got it working Patrick. </p>
<p>Suspect that for every user that manages finally to find the solution, have half a dozen that just think - Sod it, doesn't work, waste of time, delete.</p>
<p>Maybe it's some kind of elitist coder thing? If you can't fill in the missing technical details you can't join the club? </p>
<p>I've gone over to SMF, Simple Machines Forum purely because they do indeed have clear documentation and installation instructions. I have confidence in the team behind the script because they are thinking of the end user and not just the code. I suggest that if you want this excellent addition to wordpres to be the roaring success it deserves to be, you do the same.  </p>
<p>Good luck with the project.
</p>]]></description>
					</item>
		<item>
			<title>patrickallmond on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-93014</link>
			<pubDate>Thu, 06 Oct 2011 20:30:51 +0000</pubDate>
			<dc:creator>patrickallmond</dc:creator>
			<guid isPermaLink="false">93014@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I know that seems obvious Rev. but it's not. If you are installing this for the first time "Forums Base Slug" does not mean anything to. A simple one or two liner in the instructions (as indicated above) that says "Congratulations. Your forums is up and running. Visit xxxxxxxxxxx.com/forums or xxxxxxxxx.xom/[what-is-in-the-forums-base-slug-field] would really help. After I installed it the first time it took me a couple of hours to find my forums page.
</p>]]></description>
					</item>
		<item>
			<title>Rev. Voodoo on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-93011</link>
			<pubDate>Thu, 06 Oct 2011 17:23:58 +0000</pubDate>
			<dc:creator>Rev. Voodoo</dc:creator>
			<guid isPermaLink="false">93011@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I didn't think anything was necessary to use it. During installation, step 3, I either set up, or it defaulted the forums base slug as forums.</p>
<p>A slug is part of a URL, so Ithen visited domain.com/forums and it worked.</p>
<p>So I added a link to my menu for that URL, and I was done.</p>
<p>Basically, whatever you set the forums slug to, yu add to the end of your URL, and there's your forums
</p>]]></description>
					</item>
		<item>
			<title>Andre on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92987</link>
			<pubDate>Wed, 05 Oct 2011 22:25:51 +0000</pubDate>
			<dc:creator>Andre</dc:creator>
			<guid isPermaLink="false">92987@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There are also other ways to get forums to display, but labeling the above as quick instructions would probably be helpful.
</p>]]></description>
					</item>
		<item>
			<title>bobbyh44 on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92966</link>
			<pubDate>Wed, 05 Oct 2011 16:01:33 +0000</pubDate>
			<dc:creator>bobbyh44</dc:creator>
			<guid isPermaLink="false">92966@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Ah - awesome. Thanks Andre, really appreciate it.<br />
Hopefully they'll add that link into the bottom of the instructions so it reads:</p>
<p>== Installation ==</p>
<p>1. Place the 'bbpress' folder in your '/wp-content/plugins/' directory.<br />
2. Activate bbPress.<br />
3. Visit 'Settings &#62; Forums' and adjust your configuration.<br />
4. Create some forums.<br />
5. View your site.<br />
6. Adjust the CSS of your theme as needed, to make everything pretty.<br />
7. Create a page and add one or more of these short codes into it to display your forum: <a href="http://bbpress.org/forums/topic/bbpress-20-shortcodes" rel="nofollow">http://bbpress.org/forums/topic/bbpress-20-shortcodes</a></p>
<p>All the best.</p>
<p>Bob
</p>]]></description>
					</item>
		<item>
			<title>Andre on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92962</link>
			<pubDate>Wed, 05 Oct 2011 15:32:30 +0000</pubDate>
			<dc:creator>Andre</dc:creator>
			<guid isPermaLink="false">92962@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You'd probably want to use one of these:<br />
[bbp-forum-index] - Show the forum index/archive<br />
[bbp-single-forum id=$forum_id] - Show a single forums topics</p>
<p>Here is the thread listing the shortcodes - <a href="http://bbpress.org/forums/topic/bbpress-20-shortcodes" rel="nofollow">http://bbpress.org/forums/topic/bbpress-20-shortcodes</a>
</p>]]></description>
					</item>
		<item>
			<title>bobbyh44 on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92958</link>
			<pubDate>Wed, 05 Oct 2011 10:36:37 +0000</pubDate>
			<dc:creator>bobbyh44</dc:creator>
			<guid isPermaLink="false">92958@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi Again,</p>
<p>Ahh thanks tgiokdi, getting closer to knowing how to get this working.</p>
<p>So you install it.<br />
Then you make a wordpress page.<br />
Then you add a shortcode tag to that page.</p>
<p>I'm guessing you add it into the HTML view of the page or a post and it would look something like:</p>
<p>[bbpress(testforum)]</p>
<p>Where the name of the forum is 'testforum'.</p>
<p>I haven't tried this but maybe its a step in the right direction. Can anyone tell me what the tag looks like to get the forum to show up... or is it a secret ;)
</p>]]></description>
					</item>
		<item>
			<title>Erlend on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92904</link>
			<pubDate>Tue, 04 Oct 2011 02:09:00 +0000</pubDate>
			<dc:creator>Erlend</dc:creator>
			<guid isPermaLink="false">92904@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You've got a point there tgiokdi. BuddyPress 1.5 does a good job of helping the user create the necessary pages for the plugin to use.
</p>]]></description>
					</item>
		<item>
			<title>tgiokdi on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92900</link>
			<pubDate>Mon, 03 Oct 2011 20:00:40 +0000</pubDate>
			<dc:creator>tgiokdi</dc:creator>
			<guid isPermaLink="false">92900@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>perhaps in the bbpress installation, there should be a suggestion to add a page with the shortcode already on it, or create a link in the menu.  It took me a while to figure out just where the 'new' forum was.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92870</link>
			<pubDate>Mon, 03 Oct 2011 05:50:58 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">92870@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You create the navigation on your site the same way you always do, whatever that is for you. Either make the page, use the nav menus, etc... bbPress doesn't turn your existing site into something new, it compliments it by adding forums in place. You do the rest.
</p>]]></description>
					</item>
		<item>
			<title>Weznezz on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92868</link>
			<pubDate>Mon, 03 Oct 2011 01:18:13 +0000</pubDate>
			<dc:creator>Weznezz</dc:creator>
			<guid isPermaLink="false">92868@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm sorry but the OP isn't lying.<br />
you do step 1-4 and then 5: View your site...</p>
<p>... yup, it looks exactly like it did before I installed bbPress...<br />
no link to forums. The only way anyone can access the forums is if they;re an admin, and go into the forum settings and click "view forum"</p>
<p>You're obviously telling us theres a magic invisible link outside the Admin area??</p>
<p>are we supposed to make a page with something like [bbpress] inside? And dont bother trying [bbpress] it doesn't work.
</p>]]></description>
					</item>
		<item>
			<title>kkmett on "can&#039;t access admin dashboard"</title>
			<link>http://bbpress.org/forums/topic/cant-access-admin-dashboard#post-92783</link>
			<pubDate>Thu, 29 Sep 2011 15:12:02 +0000</pubDate>
			<dc:creator>kkmett</dc:creator>
			<guid isPermaLink="false">92783@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@ennaj I had the exact same experience as you. The plugin install didn't work for me, because of a theme conflict.</p>
<p>Now I have a separate instance running, but integrated with my WP installation.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92428</link>
			<pubDate>Thu, 22 Sep 2011 19:04:10 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">92428@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You don't “need” to do anything else. But you can if you'd like. </p>
<p>bbPress 2.0 is over a year in the making. Documentation will come next.
</p>]]></description>
					</item>
		<item>
			<title>bobbyh44 on "No instructions = waste of time"</title>
			<link>http://bbpress.org/forums/topic/no-instructions-waste-of-time#post-92425</link>
			<pubDate>Thu, 22 Sep 2011 16:53:35 +0000</pubDate>
			<dc:creator>bobbyh44</dc:creator>
			<guid isPermaLink="false">92425@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>== Installation ==</p>
<p>1. Place the 'bbpress' folder in your '/wp-content/plugins/' directory.<br />
2. Activate bbPress.<br />
3. Visit 'Settings &#62; Forums' and adjust your configuration.<br />
4. Create some forums.<br />
5. View your site.<br />
6. Adjust the CSS of your theme as needed, to make everything pretty.</p>
<p>You have to do plenty more than these steps if you want to install and have some forums up and running on your blog. </p>
<p>I think it's a bit of a cheat to suggest this is so easy to complete. Absolutely hellish in my experience. 2 days in and still nothing.</p>
<p>You make no mention of setting up pages with the shortcode tags, no mention about issues with sign up conflicts and documentation is non existent if you want to add it to wordpress.</p>
<p>Is this another case of tech people making a great system and then just forgetting that people have to use it? </p>
<p>Where are the wordpress installation instructions? </p>
<p>Please someone just tell me if any exist as I'll go for another system if not.</p>
<p>Bob
</p>]]></description>
					</item>
		<item>
			<title>aberrantphoto on "Plugin Install"</title>
			<link>http://bbpress.org/forums/topic/plugin-install#post-92130</link>
			<pubDate>Fri, 16 Sep 2011 00:22:49 +0000</pubDate>
			<dc:creator>aberrantphoto</dc:creator>
			<guid isPermaLink="false">92130@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi John,</p>
<p>I got my forums to show after following the install steps again. I copied the files from the bbp-twentyten folder to my main theme folder and then added the line: add_theme_support( 'bbpress' ); </p>
<p>to my functions.php file (inside this main theme folder, not the one in wp-includes...I'm assuming this is correct?) </p>
<p>The forum now shows, but the styling is all messed up. Is there any way to have the forum follow the formatting/style of my current theme without having to edit a bunch of CSS? The theme I'm using is a custom build which I did not create so it's been a struggle to figure out what's going on with it. Here's a link to my forum page:<br />
<a href="http://foreverathletes.com/forums/forum/community-2/" rel="nofollow">http://foreverathletes.com/forums/forum/community-2/</a></p>
<p>If I merge the contents of the bbp-twentyten functions.php file with my own functions.php, some styling is brought in, but it's still a mess. I realize you're not here to help with design aspects, but is there any way to get the plugin to just work with my current styling?</p>
<p>I'll offer up some points on clarification in a few.</p>
<p>Thanks for the help.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Plugin Install"</title>
			<link>http://bbpress.org/forums/topic/plugin-install#post-92124</link>
			<pubDate>Thu, 15 Sep 2011 23:15:05 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">92124@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If you can offer up some clarification, I'll edit the post so it makes more sense. :)
</p>]]></description>
					</item>
		<item>
			<title>aberrantphoto on "Plugin Install"</title>
			<link>http://bbpress.org/forums/topic/plugin-install#post-92122</link>
			<pubDate>Thu, 15 Sep 2011 22:18:01 +0000</pubDate>
			<dc:creator>aberrantphoto</dc:creator>
			<guid isPermaLink="false">92122@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>John, </p>
<p>I'm going back through the original theme compatibility topic. I've noticed some of the answers are in the comments section of that thread. I do know how to use child themes, I just believe the instructions for the custom install are worded in a confusing way. Thanks for the response.
</p>]]></description>
					</item>

	</channel>
</rss>

