Forum Replies Created
-
None of the user integration steps should of messed with bbpcore functions. I know if you tried to do deep integration, which wasn’t in those steps that could of made the forums disappear.
Give me a link to your site
In reply to: Search – Relevant Post Links BrokenWow I feel stupid.
In reply to: Search – Relevant Post Links BrokenIt looks fixed, thank you! I’ll put the link below but not complete the link because it will add this post into the search for
“bbpress 1.03”
What’s next?
In reply to: Unwanted ads in bbPress ThemesThat’s normal, it’s in the default theme as well.
<?php
$_head_profile_attr = '';
if ( bb_is_profile() ) {
global $self;
if ( !$self ) {
$_head_profile_attr = ' profile="http://www.w3.org/2006/03/hcard"';
}
}
?>In reply to: How to reverse everything in my header?try using Firefox and an addon called FireBug.
It’s something useful to find what part of the site is using what css.
your body tags for WP
body {
color:#444444;
font-family:Arial,Helvetica,Sans-serif;
font-size:0.79em;
margin:0;
padding:0;
text-align:center;
}Your Body Tags for bbP
body {
background-color:#F9F7F5;
font:62.5% 'Trebuchet MS','Lucida Grande',Arial,Helvetica,Sans-serif;
margin-bottom:50px;
}you can start by changing your font on bbP to Arial,Helvetica,Sans-serif; and add in font-size… etc etc
Try it!
Which integration (there are many) steps did you take?
Clear your cache on your browser.
Login into you bbpress first then you are able to log into the admin section.
In reply to: bbPress disappearing? Bah, humbug!It’s not going anywhere…
We are all contribute in some way, there are still movement in fixing bugs, we can not allow ourselves to call it quits before it happens.
This program works, that’s all that matters to me. It’s working now and it’s been working for a while. It’s not breaking. If everyone leaves today, the program still works as it should.
“Don’t worry, contribute”
Did you remove all the tables that have WP_BB_?
In reply to: Newbie QuestionMomD1rect
Just to be clear:
The integration is just so you can use the same user information on both sites.
The sites WordPress & bbPress will not look the same after you integrate it. It will look exactly how you had it before.
These instructions work for me, stop at Deep Integration: http://wpbbpthemes.org/integration/
In reply to: How to show a topic is closed on the front pageYes I would like both to show. JH nice site, getting married myself.
In reply to: How to show a topic is closed on the front pageit’s conflicting with
bb_topic_labels();
In reply to: How to reverse everything in my header?It will be easier to see the raw files to help you out unless you just want it to appear the same. Did you want to include the page navigation?
In reply to: Search – Relevant Post Links BrokenI’m using this as an example: https://bbpress.org/forums/search.php?q=i18n
Did you noticed that the if the same topic shows up in
Search for “i18n” Recent Posts = Relevant posts
then it’s broken? If you see the broken one Recent post #2 and Revelant Post #4 have the same title. I don’t know if that helps.
In reply to: wp integration cookie does not workOkay what I noticed is the only time you get ADMIN_COOKIE_PATH line is when your WP is in a folder:
site.com/folder/ wordpress and site.com/folder/forums bbpress.
then the result will be ADMIN_COOKIE_PATH is /folder as for an answer I still haven’t been able to try it to tell you.
In reply to: “deep” integration – class.wp-http.php and http.phpWhat are the steps your took to achieve the “deep” integration?
Does it let you do a fresh install or does it say it found a bb-config file? buddypress creates one and put it in the wordpress folder. also check your htaccess file.
I forgot, you can’t call your bbpress forums “forums” call it forum or something else.
I did this.. I installed WP, then installed bbP with a different table prefix, then installed BuddyPress without using existing bbPress install. http://wpmubpbb.org/forum/
In reply to: Topic tagsfrom SAM
“A first attempt at getting WordPress 2.7 and bbPress 1.0 to play nice again is now in trunk [1862].
I’m specifically talking about “deep” integration, i.e. when you include WordPress inside bbPress to gain access to WordPress’ functions.
This will need a lot of testing, so please post any issues you have on the relevant Trac ticket, #972 (which will stay open until some more testing has occurred).
I recommend using the following code at the top of your bbPress bb-config.php file to include WordPress inside bbPress:
if ( !defined( ‘ABSPATH’ ) ) {
include_once( ‘/Full/Path/To/wp-load.php’ );
}
Note that this includes “wp-load.php” not “wp-config.php” or “wp-blog-header.php”. This avoids running WordPress’ template loader which presumably isn’t needed inside bbPress. Some implementations may want it though, so if you find you need it then give it a go and let us know how that goes.
Also note that all filters and actions set in WordPress whether default or added by plugins or themes are cleared out completely. That means that plugins and themes installed in WordPress cannot add filters or actions to bbPress at all. This may have some implications I’m not aware of yet.
Go nuts! “
So they contradict each other? I’m trying to figure out the integrations problems everyone is having. And being a php illiterate it’s kind of hard.
In reply to: Cannot access admin panel.log out and login in on the bbpress side. This is a known issue with integration.
For bbPress Forum just download the plugin
for the BuddyPress Group Forum you need someone to convert it to BuddyPress compatible.
example = https://wordpress.org/extend/plugins/buddypress-group-forum-extras
Some of the bbPress plugins were converted.
In reply to: BuddyPress Group Forums for bbPressgo to buddypress.org click on Developers then Plugins or https://buddypress.org/extend/plugins/
In reply to: Topic tagsI did wp-blog-header.php. I changed it to wp-load.php and it works great, thanks.