<?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: integration - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/integration</link>
		<description>bbPress Support Forums &#187; Tag: integration - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 15:18:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/integration" rel="self" type="application/rss+xml" />

		<item>
			<title>softechnos on "Prevent Users From Creating Topics"</title>
			<link>http://bbpress.org/forums/topic/prevent-users-from-creating-topics#post-102879</link>
			<pubDate>Thu, 17 May 2012 07:52:38 +0000</pubDate>
			<dc:creator>softechnos</dc:creator>
			<guid isPermaLink="false">102879@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey Guys,<br />
I am using the latest version of bbpress and I want to stop users to create topics.
</p>]]></description>
					</item>
		<item>
			<title>qmic76 on "Check if a user is logged in?"</title>
			<link>http://bbpress.org/forums/topic/check-if-a-user-is-logged-in#post-102847</link>
			<pubDate>Wed, 16 May 2012 16:53:46 +0000</pubDate>
			<dc:creator>qmic76</dc:creator>
			<guid isPermaLink="false">102847@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I want to hide page links in my main header navigation from non registered members, then have them show up after the user has logged in. </p>
<p>I'm currently using custom menu manager and wp-members for plugins. The custom menu manager allows me to set which page links show up in the assigned navigation menu (ie: only "about" and "register" are shown on home page the other page links are hidden), but it doesn't recognize whether the user is logged in or not and the hidden page links are not shown after you've logged in still. With wp-members plugin I have the "members" and "project" pages set to block access unless logged in, but this only effects the page access, the nav link for those pages were still showing up in the main navigation until I used the menu manager plugin which hid them totally not conditionally based on log in status which is what I want.</p>
<p>Is there a php block of code to use or plugin you guys recommend that handles nav link access/visibilty based on log in status? I'm at total loss. Please help me. Visit my site mks76.com/wp/
</p>]]></description>
					</item>
		<item>
			<title>Sniper Kitten on "Straight Up Confused...Site Wide won&#039;t install? Forums not Showing?"</title>
			<link>http://bbpress.org/forums/topic/straight-up-confusedsite-wide-wont-install-forums-not-showing#post-102688</link>
			<pubDate>Sat, 12 May 2012 03:11:49 +0000</pubDate>
			<dc:creator>Sniper Kitten</dc:creator>
			<guid isPermaLink="false">102688@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Do you remember to change the forum slug in Setting &#62; Forums in your dashboard? By default, both of them are using the page slug "forums" so there're conflict between Group Forum &#38; Sitewide Forum.</p>
<p>Read here for more info:<br />
<a href="http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/" rel="nofollow">http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/</a></p>
<p>For installing group &#38; sitewide forums:<br />
<a href="http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/3/" rel="nofollow">http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/3/</a>
</p>]]></description>
					</item>
		<item>
			<title>shawnkelshaw on "Straight Up Confused...Site Wide won&#039;t install? Forums not Showing?"</title>
			<link>http://bbpress.org/forums/topic/straight-up-confusedsite-wide-wont-install-forums-not-showing#post-102684</link>
			<pubDate>Fri, 11 May 2012 14:35:13 +0000</pubDate>
			<dc:creator>shawnkelshaw</dc:creator>
			<guid isPermaLink="false">102684@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have a host of problems and not sure really where to begin. Normally, I'd simply try uninstalling the bbpress plugin, but I only get all the same settings and experiences back when I try to start over. Here's a few of the problems I've got:</p>
<p>1.) We'd like to use the New Site Wide Forums option (vs Forums for Groups). My first question is this an either or scenario or do you have to use the Forums for Groups? I always have a "Use Existing" option for Groups and there is no uninstall button available. When I install the Site Wide and return back to the buddypress forums tab, it still reflects the Groups...</p>
<p>2.) Regardless of the option selected above, I can not get a Forum page to display...I only get 404. Yes. I've created a Test Forum instance and I'm using the "View" option to check it out. 404 error. (it is published and public, I'm logged in as admin)</p>
<p>If I were to try deleting the tables from the database, uninstalling the plugin and manually removing all server side files, would that help to start over? If so, what tables get removed??</p>
<p>Thanks in advance.<br />
s
</p>]]></description>
					</item>
		<item>
			<title>kdoole on "Apostrophe and or quotation marks cause backslash to appear."</title>
			<link>http://bbpress.org/forums/topic/apostrophe-and-or-quotation-marks-cause-backslash-to-appear#post-102144</link>
			<pubDate>Fri, 27 Apr 2012 17:41:53 +0000</pubDate>
			<dc:creator>kdoole</dc:creator>
			<guid isPermaLink="false">102144@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Rather than hacking the core, you should put that code into your theme's functions.php. That's what apply_filters and add_filter is for!!!!!!!!!! :)</p>
<p>Add this to your theme's functions.php:<br />
<pre><code>add_filter( &#039;get_topic_title&#039;, &#039;strip_the_title_slashes&#039;, 20, 2);
function strip_the_title_slashes( $title, $id ) {
	return stripslashes( $title );
}

add_filter( &#039;get_post_text&#039;, &#039;strip_the_text_slashes&#039;, 20, 2);
function strip_the_text_slashes( $text, $id ) {
	return stripslashes( $text );
}</code></pre>]]></description>
					</item>
		<item>
			<title>valocirque on "how can i show forum and their post?"</title>
			<link>http://bbpress.org/forums/topic/how-can-i-show-forum-and-their-post#post-102135</link>
			<pubDate>Fri, 27 Apr 2012 10:15:23 +0000</pubDate>
			<dc:creator>valocirque</dc:creator>
			<guid isPermaLink="false">102135@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hello,</p>
<p>I know it s been a little time these messages were posted and I wonder if you got the answer, I m looking for the exact configuration for hours (and 2 days)...let me know if you solve it.</p>
<p>Thanks a lot.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "How do I create blog and forum together in one domain"</title>
			<link>http://bbpress.org/forums/topic/how-do-i-create-blog-and-forum#post-101312</link>
			<pubDate>Sun, 08 Apr 2012 17:56:08 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">101312@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>No problem! That's what we're here for :P
</p>]]></description>
					</item>
		<item>
			<title>maintenanceguy on "How do I create blog and forum together in one domain"</title>
			<link>http://bbpress.org/forums/topic/how-do-i-create-blog-and-forum#post-101303</link>
			<pubDate>Sun, 08 Apr 2012 13:51:16 +0000</pubDate>
			<dc:creator>maintenanceguy</dc:creator>
			<guid isPermaLink="false">101303@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thank you,  I've got a lot of tweaking to do but It does work out of the box.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "How do I create blog and forum together in one domain"</title>
			<link>http://bbpress.org/forums/topic/how-do-i-create-blog-and-forum#post-101283</link>
			<pubDate>Sat, 07 Apr 2012 18:36:19 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">101283@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Install bbPress 2.0.2 (the plugin) - it will do all of this out of the box :)
</p>]]></description>
					</item>
		<item>
			<title>maintenanceguy on "How do I create blog and forum together in one domain"</title>
			<link>http://bbpress.org/forums/topic/how-do-i-create-blog-and-forum#post-101278</link>
			<pubDate>Sat, 07 Apr 2012 17:39:55 +0000</pubDate>
			<dc:creator>maintenanceguy</dc:creator>
			<guid isPermaLink="false">101278@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I need a quick, overview of how to install a WP blog with a BBPress forum on the same domain.</p>
<p>I found a couple of tutorials on how to do this with the legacy stand alone version of BBPress and have considered just installing the legacy version but am hoping there's a way with the newer plugin version.</p>
<p>What I want to do:<br />
(1) Run WordPress from the root directory and use it as the site blog<br />
(2) Run a forum in a subfolder '/forum' (I assume this will require a second installation of WP with BBPress plugin?)<br />
(3) Both the forum and blog should have integrated registrations/login so if you join or log into one, you're automatically a member of or logged into the other.<br />
(4) Both the forum and blog should be able to share a theme or at least be able to install the same theme on both installations for website consistency.</p>
<p>Thank you in advance for any help.
</p>]]></description>
					</item>
		<item>
			<title>arturex on "forum on wordpress main page"</title>
			<link>http://bbpress.org/forums/topic/forum-on-wordpress-main-page#post-101040</link>
			<pubDate>Mon, 02 Apr 2012 16:14:58 +0000</pubDate>
			<dc:creator>arturex</dc:creator>
			<guid isPermaLink="false">101040@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi all. I've read that there is no way that the main page of wordpress can be the forum itself, but i wonder if I can take the code of the bbpress that hanlde all the forums and insert it as an include into the wordpress index.php. if that is posible an some one help me telling me which part of the code is the one I can copy  to call the forum and topics in to the very front page.<br />
I've seen i can show all that in the sidebar, but i would like to make it the main page like the forum page with the latest topics, most comented and most visited.</p>
<p>Thank you
</p>]]></description>
					</item>
		<item>
			<title>naviathan on "Slashes being added in front of apostrophes"</title>
			<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes/page/2#post-100759</link>
			<pubDate>Tue, 27 Mar 2012 15:40:20 +0000</pubDate>
			<dc:creator>naviathan</dc:creator>
			<guid isPermaLink="false">100759@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>uxtremist - THANK YOU!!!  That plugin works perfectly.  I was pulling my hair out over this.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98717</link>
			<pubDate>Wed, 29 Feb 2012 04:45:27 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">98717@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>Ultimately I'm back to where I began. I want to continue using the WP top bar but have the edit account option link to bbPress's account page.</p></blockquote>
<p>No, I am not aware a way to easily keep the admin bar but filter the user link so that it goes to the bbPress profile page instead of your wp-admin user. </p>
<p>Something like this would need to be a custom plugin. </p>
<p>I mentioned various things you can do, without touching virtually any code, that would help keep users from hitting /wp-admin - unfortunately hacking the admin-bar is not one of those things.
</p>]]></description>
					</item>
		<item>
			<title>jamieskella on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98716</link>
			<pubDate>Wed, 29 Feb 2012 04:40:47 +0000</pubDate>
			<dc:creator>jamieskella</dc:creator>
			<guid isPermaLink="false">98716@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>And you're not aware of any plugins that perform a similar task that also have a php drop-in facility to put it anywhere in the theme? I didn't find any with a search.</p>
<p>Ultimately I'm back to where I began. I want to continue using the WP top bar but have the edit account option link to bbPress's account page.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98715</link>
			<pubDate>Wed, 29 Feb 2012 04:37:35 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">98715@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Yep, but not without editing the theme and getting dirty with a little PHP.
</p>]]></description>
					</item>
		<item>
			<title>jamieskella on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98714</link>
			<pubDate>Wed, 29 Feb 2012 04:36:05 +0000</pubDate>
			<dc:creator>jamieskella</dc:creator>
			<guid isPermaLink="false">98714@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I would like the login in the header as my first widget location is below the fold. Is it possible to use the widget code elsewhere?
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98713</link>
			<pubDate>Wed, 29 Feb 2012 04:34:42 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">98713@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just use the bbPress Login Widget that is packaged with bbPress :)
</p>]]></description>
					</item>
		<item>
			<title>jamieskella on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98712</link>
			<pubDate>Wed, 29 Feb 2012 04:21:59 +0000</pubDate>
			<dc:creator>jamieskella</dc:creator>
			<guid isPermaLink="false">98712@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>So I suppose the issue here is that I then have to link to the pages - e.g. the registration page, the login page and so-forth.</p>
<p>Except these links would be static, so even if they had logged in that link in the header would still say "login"?</p>
<p>I'm not a coder, so creating dynamic user links in the header area isn't something I can do.</p>
<p>Is there a plugin or code available to implement a dynamic login/user area like what is seen on this site?
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98711</link>
			<pubDate>Wed, 29 Feb 2012 04:15:30 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">98711@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You would want to disable the admin bar site-wide for "Subscribers".</p>
<p>Then you would have a link in your site/theme that takes your members to the bbPress profile page where they can edit their profile.</p>
<p>If you disable the admin bar and use login/registrations forms via shortcodes there is really no reason for the users to ever use /wp-admin unless the specifically went to it.
</p>]]></description>
					</item>
		<item>
			<title>jamieskella on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98709</link>
			<pubDate>Wed, 29 Feb 2012 04:11:16 +0000</pubDate>
			<dc:creator>jamieskella</dc:creator>
			<guid isPermaLink="false">98709@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This still isn't clear.</p>
<p>Let me rephrase, for a specific example: in the top WP bar, how can I change the user's "Edit profile" link to use their bbPress profile page?
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all/page/2#post-98706</link>
			<pubDate>Wed, 29 Feb 2012 03:48:43 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">98706@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You can do user registration and user login all on the front end using shortcodes and/or other plugins available - there is no reason the basic user needs to use wp-admin at all.</p>
<p>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>jamieskella on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all#post-98699</link>
			<pubDate>Wed, 29 Feb 2012 03:35:44 +0000</pubDate>
			<dc:creator>jamieskella</dc:creator>
			<guid isPermaLink="false">98699@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm not sure you understand the issue I'm talking about, or perhaps I've misunderstood you.</p>
<p>When someone clicks on "Howdy, Name" they are given the option to "Edit their profile". This takes them to wp-admin rather than their bbPress profile page.</p>
<p>I want to ensure all users except admins are directed to their bbPress profile page.</p>
<p>All that plugin you linked to does is stop users creating content once inside the area I don't want them to visit at all.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all#post-98693</link>
			<pubDate>Wed, 29 Feb 2012 03:00:03 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">98693@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There is no reason a user has to access the admin as the profiles can all be edited though front end. </p>
<p>This plugin will also help <a href="http://wordpress.org/extend/plugins/bbpress-no-admin/" rel="nofollow">http://wordpress.org/extend/plugins/bbpress-no-admin/</a>
</p>]]></description>
					</item>
		<item>
			<title>jamieskella on "One profile page to rule them all"</title>
			<link>http://bbpress.org/forums/topic/one-profile-page-to-rule-them-all#post-98688</link>
			<pubDate>Wed, 29 Feb 2012 02:16:56 +0000</pubDate>
			<dc:creator>jamieskella</dc:creator>
			<guid isPermaLink="false">98688@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Is there a plugin for this yet, or can anyone confirm if timskii's code still works? I really would like the bbPress profile to be the only profile non-administrative users can access.
</p>]]></description>
					</item>
		<item>
			<title>sweetanne on "if my WP has RPX, does my bbPress get it for free?"</title>
			<link>http://bbpress.org/forums/topic/if-my-wp-has-rpx-does-my-bbpress-get-it-for-free#post-98319</link>
			<pubDate>Mon, 20 Feb 2012 11:54:45 +0000</pubDate>
			<dc:creator>sweetanne</dc:creator>
			<guid isPermaLink="false">98319@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><a href="http://wordpress.org/extend/plugins/loginradius-for-wordpress/" rel="nofollow">http://wordpress.org/extend/plugins/loginradius-for-wordpress/</a><br />
This WordPress plugin also work with BuddyPress.
</p>]]></description>
					</item>
		<item>
			<title>sweetanne on "OpenID for bbpress"</title>
			<link>http://bbpress.org/forums/topic/wanted-openid-for-bbpress#post-98316</link>
			<pubDate>Mon, 20 Feb 2012 11:43:46 +0000</pubDate>
			<dc:creator>sweetanne</dc:creator>
			<guid isPermaLink="false">98316@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This WordPress plugin supports BuddyPress and provides login through multiple OpenID providers.<br />
<a href="http://wordpress.org/extend/plugins/loginradius-for-wordpress/" rel="nofollow">http://wordpress.org/extend/plugins/loginradius-for-wordpress/</a>
</p>]]></description>
					</item>
		<item>
			<title>FADmark on "URGENT WPMU Intergration -- BBPress Changing user roles in WPMU"</title>
			<link>http://bbpress.org/forums/topic/urgent-wpmu-intergration-bbpress-changing-user-roles-in-wpmu#post-98313</link>
			<pubDate>Mon, 20 Feb 2012 09:20:38 +0000</pubDate>
			<dc:creator>FADmark</dc:creator>
			<guid isPermaLink="false">98313@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Did you figure anything out for this Driftless1?  I'm having the same problem in bP 2.0 (plugin) and WP 3.3.1.  Every time someone posts in bbPRess, they get changed to a Forum Participant, including admins, which then removes those admins from the Authors list on blog Posts.  Very annoying.</p>
<p>Thanks for anything.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "New Integration for bbPress (PageLines)"</title>
			<link>http://bbpress.org/forums/topic/new-integration-for-bbpress-pagelines#post-97967</link>
			<pubDate>Thu, 09 Feb 2012 02:10:56 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">97967@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I understand now. No need to send anything, thanks for the offer.</p>
<p>Growing pains with any software are sometimes difficult, for everyone - users and developers. The process of moving bbPress into a WordPress plugin was not without its own. I am confident that the end result with today's iterations is better than the previous, and hopefully your experience coincides with that.
</p>]]></description>
					</item>
		<item>
			<title>jankowalski on "New Integration for bbPress (PageLines)"</title>
			<link>http://bbpress.org/forums/topic/new-integration-for-bbpress-pagelines#post-97961</link>
			<pubDate>Wed, 08 Feb 2012 19:44:20 +0000</pubDate>
			<dc:creator>jankowalski</dc:creator>
			<guid isPermaLink="false">97961@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>i own platform pro but it and it doesn t work with bbpress 2.0. it used to work with bbpress 1.0, they even relased special plugin for that. After your mod update to 2.0 it stoped. nevermind. if you are interested, i could send you platform pro files, so you could make a fresh install and test how it play together.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "New Integration for bbPress (PageLines)"</title>
			<link>http://bbpress.org/forums/topic/new-integration-for-bbpress-pagelines#post-97958</link>
			<pubDate>Wed, 08 Feb 2012 16:09:17 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">97958@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>So you own it, and it works? If so, I fail to understand your position on the matter.
</p>]]></description>
					</item>

	</channel>
</rss>

