Search Results for 'bbpress'
-
AuthorSearch Results
-
September 12, 2010 at 12:59 am #93834
In reply to: Integrate WP Twentyten and bbPress Kakumei
wblogan
MemberThe “deep integration” code still breaks my site, but the link to the style sheet in header.php wasn’t working because I had bb-styles.php in the wrong place.
Also I’m loading WordPress from wp-blog-header.php instead of wp-load.php.
The only thing that remains is to figure out how to make changes to the bbPress pages without making changes to the whole site since it’s calling two style sheets. I’ve spent no small amount of time with “inspect element” and “firebug” in Google Chrome trying to find the styles I want to change on the bbPress pages. You could tell me in short order I’m sure how to make the changes I want. But as I said, I wanted to get all of the kinks worked out before I go public with it.
When I get it all figured out I’m thinking I’ll publish the info specific to integrating Twentyten and Kakumei (for those of us unambitious, ignorant folks who don’t have the where with all to do something original). I assume that you won’t mind me referencing your tutorial? No need to reinvent the wheel!
Thanks again for your tutorial, your interest and your help!
September 11, 2010 at 10:44 pm #93870In reply to: themes problem and quote ajax problem
kikko088
MemberI ask you another thing, there is a way for put a menu of wordpress (then with wp_list_page() ) pages on bbpress forum without insert:
require_once(dirname(__FILE__) . ‘/../wp-load.php’); ??
if I do the deep integration putting this string on my bb-config a plugin go in conflict…
ay idea?
Is better then i’m open a new topic?
kikko088
September 11, 2010 at 8:38 pm #93868In reply to: themes problem and quote ajax problem
Ashish Kumar (Ashfame)
ParticipantYou will need to fix file permissions for them to work. Take a look at this – http://blog.ashfame.com/2009/09/fix-my-templates-my-plugins-folder-not-working-bbpress/
Also for your handy reference, I share my bbPress resource page with you – http://blog.ashfame.com/bbpress/
Let me know if you are stuck with anything again. I will be happy to help you out
September 11, 2010 at 4:54 pm #93628In reply to: Change style of function called fields
Ashish Kumar (Ashfame)
ParticipantUse Firebug (Firefox addon)or simplest(ugliest) View Page Source option.
P.S. We are at bbPress support forums and not at a web development one
September 11, 2010 at 4:52 pm #92034In reply to: Can't access the dashboard
Ashish Kumar (Ashfame)
ParticipantThis issue can be solved by the bbPress integration plugin for WordPress. Keep the plugin activated, it generates the required cookies on WordPress authentication hooks which otherwise are not created for accessing bbPress dashboard (or admin panel)
P.S. – I actually looked at the plugin’s code today!
Don’t know what the BackPress has to do here!
September 11, 2010 at 4:48 pm #78878In reply to: Admin link doesn't take me to dashboard
Ashish Kumar (Ashfame)
ParticipantThis issue can be solved by the bbPress integration plugin for WordPress. Keep the plugin activated, it generates the required cookies on WordPress authentication hooks which otherwise are not created for accessing bbPress dashboard (or admin panel)
P.S. – I actually looked at the plugin’s code today!
Don’t know what the BackPress has to do here!
September 11, 2010 at 4:48 pm #92551Ashish Kumar (Ashfame)
ParticipantThis issue can be solved by the bbPress integration plugin for WordPress. Keep the plugin activated, it generates the required cookies on WordPress authentication hooks which otherwise are not created for accessing bbPress dashboard (or admin panel)
P.S. – I actually looked at the plugin’s code today!
September 11, 2010 at 4:43 pm #93833In reply to: Integrate WP Twentyten and bbPress Kakumei
Ashish Kumar (Ashfame)
ParticipantInstead of loading WordPress from
wp-load.php, load it fromwp-blog-header.php.I checked the header.php file of Twentyten and there is nothing in it that would stop you from making changes. Follow the tutorial and you will be fine.
This is the line before which you should add the link to bb-style.css
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />Rest is in the tutorial.
September 11, 2010 at 11:30 am #93832In reply to: Integrate WP Twentyten and bbPress Kakumei
wblogan
MemberWell, I don’t quite have it done. I can’t figure out why your code breaks the site as I mentioned earlier. Do I need it? (I forgot to mention that your code calls wp-blog-header.php, and another tutorial I referenced calls wp-load.php. I know that requiring wp-load.php is a requirement; but what about wp-blog-header.php?)
Also, I don’t know how to link the style sheet to bbPress because I can’t figure out how to get the link in the header. I don’t understand header.php in Twentyten. Can you help me with that?
I’ll post a link when I get it published, but I’m doing all of this on a local mirror of my public site.
September 11, 2010 at 5:20 am #93567In reply to: Can not get into admin panel
Ashish Kumar (Ashfame)
ParticipantIf you can see the Admin link but can’t get in, this is a cookie problem and if you can’t even see the admin link, then you don’t have the privilege, fix it here – http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
September 11, 2010 at 5:17 am #93830In reply to: Integrate WP Twentyten and bbPress Kakumei
Ashish Kumar (Ashfame)
ParticipantLooks like you got it done. Post a link to your forums. You need a little bit of CSS to fix that.
September 11, 2010 at 3:53 am #93829In reply to: Integrate WP Twentyten and bbPress Kakumei
wblogan
MemberI’ve gotten this to work this way so far:
Put this line in bb-config.php
require_once( '/your/full/path/wp-load.php');In the files listed below, replace
<?php bb_get_header(); ?>with<?php get_header(); ?><div id="container">
<div id="content" role="main">
<?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>and
<?php bb_get_footer(); ?>with</div>
</div>
<?php get_footer(); ?>404.php
edit-post.php
favorites.php
forum.php
front-page.php
login.php
password-reset.php
profile-base.php
profile-edit.php
profile.php
register.php
register-success.php
search.php
stats.php
tag-single.php
tags.php
topic.php
I use Twentyten with one right sidebar. I decided I didn’t want it in the bbPress section of the site. If you want it, replace the footer code above with this:
</div>
<?php get_sidebar(); ?><div id="primary" class="widget-area" role="complimentary">
</div><?php get_footer(); ?>I want bbPress to fill the width of the “container”. I can the following in-line style in each page (
<div id=”content” role=”main” style=”width: 95%; font-size: 1.2em;”>`), but I’m sure I can use the style sheet to define a class or something and do it right – that is once I get Twentyten to read the bbPress style sheet.I’d also like to rearrange the objects on the page, which I may also work on once I can use the style sheet.
May not like it when I’m done, but it’s been a learning experience!
September 10, 2010 at 11:24 pm #35312enatom
MemberHow to make WordPress Posts, BBpress topics .. and intergrate the posts
September 10, 2010 at 9:36 pm #93828In reply to: Integrate WP Twentyten and bbPress Kakumei
wblogan
MemberWill do. Thanks! Sweet dreams.
September 10, 2010 at 9:31 pm #93827In reply to: Integrate WP Twentyten and bbPress Kakumei
Ashish Kumar (Ashfame)
ParticipantI haven’t played with twentyten code yet so can’t say if that will be easy for you to follow up. I am in my bed right now, typing this on my mobile.↲You do one thing, get back to me tomorrow & I will tell you. I am quite busy with my schedule so if I don’t come back on my own, hit me an email > ashishsainiashfameatgmaildotcom↲
September 10, 2010 at 9:24 pm #93826In reply to: Integrate WP Twentyten and bbPress Kakumei
wblogan
MemberPerhaps I should have included this info in my last reply. This is the error I get when using the code you recommended in bb-config.php:
Parse error: syntax error, unexpected ‘;’ in /myfullpath/public_html/bbpress/bb-config.php on line 15
Line 15:
if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST'))FWIW, I learned from another tutorial that I needed to put this code at the end of the bb-config.php file:
require_once( '/myfullpath/public_html/wp-load.php');I found that the integration will not work without it.
September 10, 2010 at 8:59 pm #35311Topic: Pages from WordPress
in forum ThemesDakcenturi
MemberIs there a way for me to pull my page navigation over from wordpress to put in my header instead of having to manually change the page navigation in bbpress anytime I add a page in wordpress?
September 10, 2010 at 8:49 pm #93825In reply to: Integrate WP Twentyten and bbPress Kakumei
wblogan
MemberYour’s is one of the tutorials I followed, Ashfame. It helped me a great deal and I’m grateful to you for it. However, the following code broke my site:
/* Deep integration */if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST'))
{
define('WP_USE_THEMES', false);
include_once(dirname(__FILE__) . '/../wp-blog-header.php' );
header("HTTP/1.1 200 OK");
header("Status: 200 All rosy");
}
I started replacing the bb_get tags as you recommended in front-page.php. As I said, I could not get the get_sidebar to work.
Also, I moved ahead with your instructions regarding the style sheets, and then on to editing the twentyten them header.php to insert the link to the bbpress theme and couldn’t figure out where to put the link – it broke my wordpress.
What am I missing?
September 10, 2010 at 8:38 pm #93824In reply to: Integrate WP Twentyten and bbPress Kakumei
Ashish Kumar (Ashfame)
ParticipantI wrote this sometime back. http://www.wpwebhost.com/make-bbpress-theme-match-with-wordpress-by-deep-integration/
Twentyten shouldn’t be difficult to follow up with.
September 10, 2010 at 8:17 pm #93807In reply to: Search drop down unexpected behaviour
KentonMr
Member‘trunk’ ?
I’m still a newbie – I though the download was the latest release “approved”
I didn’t even know of that bug list
… so good is the documentation … and I’ll bet that most users don’t or can be bothered to dig around in the maze of code to figure out why it doesn’t perform how expected.
This sort of bug fix is easy to apply – affecting only a couple of lines of code there ought to be a forum/list somewhere to enable these sort of changes to be publicised – perhaps there is but I just haven’t connected with it yet.
Still at least I managed to fix this problem one on my own … I get the feeling watching others struggle that this is what comes with bbPress … being on your own
September 10, 2010 at 8:13 pm #35310Topic: Integrate WP Twentyten and bbPress Kakumei
in forum Themeswblogan
MemberI’m running WP 3.01 using the Twentyten theme and have successfully integrated bbPress with WP so that everything works but the theme (and the need to log out of WP or bb to administer the other – which my research indicates is “normal” at this time).
I’ve followed several tutorials in order to get bbPress integrated into the WP Twentyten theme but with no luck. I can get the header and footer to display properly, but I can’t figure out out to get the Twentyten sidebar to display properly. I’m sure it’s something simple, or simply can’t be done. I’m not exactly a newbie to all of this, but have clearly reached my limit.
Does anyone know of a tutorial, or can anyone give me some guidance on this? TIA
September 10, 2010 at 5:22 pm #93822In reply to: backslashes – lack of!! how do i get them to show?
kevinjohngallagher
MemberHi Paul,
Just so you know, if you areusing the bbpress plugin that works with buddy press, then you’re not using bbpress.
It’s a fork from last years release hacked to work with buddypress. That’s not to say bad things about it though, how it was done was really great, it’s just confusing.
Don worry though, they’re making a new wordpress plugin that’s not this software or the buddypress plugin, and they’re going to call that bbpress too. At thy time, we’ll all b confused
September 10, 2010 at 4:20 pm #93806In reply to: Search drop down unexpected behaviour
mr_pelle
ParticipantSorry, I did not specify I was referring to the trunk version of bbPress, which is not the one you find on the Download section.
September 10, 2010 at 4:12 pm #93820In reply to: backslashes – lack of!! how do i get them to show?
hmmcrunchy
MemberHi Chris
thanks for reply – yes seems to work ok here. its located at http://www.byte.org.uk – i have buddypress with forum capability which is run by bbpress. it seems to be stripping out all the from the posts. i know there was a previous problem by the look of the forums about backslashes showing where they shouldnt – this may be in part due to the fix…
it might as you say be a buddy press issue – ive stuck a post on their forum too but have not had a reply as yet.
Paul
September 10, 2010 at 2:49 pm #93818In reply to: backslashes – lack of!! how do i get them to show?
chrishajer
ParticipantSeems to work here. So, where is your forum located, and what plugins are you using?
Also, since it’s BuddyPress, you might want to check at the BuddyPress support forum since I have never heard of the problem with bbPress before.
-
AuthorSearch Results