@chrishajer:
This Plugin doesn’t care if you’re admin or not. So you should only receive emails on your favorite topics.
Maybe you’ve downloaded the wrong version? There is one, which sends an email on every post!
You had an great Idea! I just put this into it. Now it displays the last posters name in the mail.
Download latest Version here:
http://la-school.com/2006/bbpress-notification/
Trent: I’ll be updating memberlist soon to add a couple features, but I need to talk to you about fixes for wp integration (I think there are 2 that need to be applied, but I need your input and testing). IM me when you read this.
Hehe … I think I found the bug. You’ve said, you’re using the latest Trac-Version of bbPress?
Then I think you have to change line 48 of my plugin from
add_action('init', 'online_update');
to
add_action('bb_init', 'online_update');
then … it should work! (for me it did)
Simple, perfect, exactly as promised. Thank you. I was thinking about doing this.
yes you solved the problem. it would be very usefull if u could tell me how u did it.
if i delete the stuff between the <body> tag the hot tags and online users are displayed just above the latest discussions and the forums and not on the left side.
greetz,
topiQ
I fixed this inadvertently but I am trying to figure out how. On the front page of my forum, I have “Hot Tags” across the top and the “Latest Discussions” beneath, and both are the same width (760px I think.) The CSS is div #wrapper div #main div #hottags p .frontpageheatmap.
screenshot http://www.riversideinfo.org/wp-content/uploads/hottags.png
I could have sworn when I first installed bbPress the tags were on the left in a 150px wide div #hottags.
Are the hot tags supposed to be on the left in a 150px wide div, or above the latest discussions? Are the hot tags and heatmap supposed to be different things on different pages?
The reason I bring this up is that mine displays fine in IE and FF with the frontpageheatmap all the way across, but maybe I am missing the hottags? If I can figure out what is different about mine, maybe that will help clear the div issue on topiQ’s site. In IE, that hottags div is pushing everything else down the page.
Here is a hacked version, I have tested it for Chinese and Japanese tags and it works.Basically, it just excludes mutibyte chars(x80-xff) from the stopdata.
function sanitize_with_dashes( $text ) {
$text = strip_tags($text);
$text = remove_accents($text);
$text = strtolower($text);
$text = preg_replace(‘/&(^x80-xff)+?;/’, ”, $text); // kill entities
$text = preg_replace(‘/[^a-z0-9×80-xff _-]/’, ”, $text);
$text = preg_replace(‘/s+/’, ‘-‘, $text);
$text = preg_replace(array(‘|-+|’, ‘|_+|’), array(‘-‘, ‘_’), $text); // Kill the repeats
return $text;
}
Hi folks!
My site http://cessi.pytalhost.com/bbpress is not displayed correctly with the ?!”$%ยง Internet Explorer. The Latest Discussion and the Forums are displayed far too low on the page. Has any1 else this problem or does any1 know how to solve it.
Greetings,
topiQ
Create a file called test.php and put in it
<?php
phpinfo();
?>
If you get a huge page with something on it with loads of information then you have windows installed. Just looking at your 404 pages show that you have a windows server – low change of having php more likely to be asp.
Gave your theory a test just now. When I opened a new topic, titled it, put some text in and hit “send post”, I found that it did not show up when I clicked on the “Unresolved topics” view. So what ever is in the <select>
area to begin with is what dictates the post status.
Thx going to try that and also (if this works) use it in the bbportal css
Edit:
Tested it in IE7, Opera 9 and FF 2.0 and this fixes it for all browsers!
Hi,
Strange thing. H1 tags are really f!@ked up. In every browser the size is different.
In IE: Ridiculous large font
in FF: Somewhat normal size
in Opera: Smaller than FF
See this image (watch the “Latest Discussions” text):
http://www.sourceskins.com/bbpressfonts.JPG
How and can we fix this problem? All other fonts are displayed ok, only the <h1> is effected!
Greetz
It sounds like what you need is to overload the bb_get_location function. This is easy to do in bbpress. You need to make a set of functions like this:
is_home() {
if( 'home-page' == get_bb_location() )
return true;
else
return false;
}
get_home_location() {
if ( bb_find_filename($_SERVER['PHP_SELF']) == 'home.php' )
return 'home-page';
}
apply_filter( 'get_bb_location', 'get_home_location' );
That’s untested, but I think that should work. Basically what you want to do is add in your locational test when bb_location is called. Then you can just call is_home() and it’ll do what you want. Of course, if you don’t want any other part of the forum to care if it’s on the home or not, you can take out all that stuff at the end that integrates it with get_bb_location, and just do this:
is_home() {
if( 'home-page' == get_home_location() )
return true;
else
return false;
}
get_home_location() {
if ( bb_find_filename($_SERVER['PHP_SELF']) == 'home.php' )
return 'home-page';
}
Whichever you want to do. The second is easier, the first is more versatile.
I’ve got a new installation of bbPress which is integrated into a mammoth WordPress site and I’m quite pleased with the outcome. The only real roadblock I’ve hit cropped up while testing.
If a user doesn’t close an HTML tag in their post, the formatting is carried through to the rest of the site (yikes!). As you can imagine, things can get ugly real quick when this happens. And it will happen, without a doubt.
Anyone aware of a fix for this? Did some searching and browsing but didn’t find any mention of this.
Was wondering if someone wouldn’t mind making up a plugin for Forum Catagory (blocks)..? Like phpBB has..
Example:
General (forum cat block 1) >
–Latest news (forum under general cat)
–General Discussions (forum under general cat)
–Site Feedback (forum under general cat)
Website Design (forum cat block 2) >
–HTML Basics (forum under website design cat)
–PHP Coding (forum under website design cat)
–CSS (forum under website design cat)
Is anyone up for doing this maybe? I think it would be nice to have this option though, rather then having ALL the forums listed under ONE Section only..
![;) ;)](smileys/wink.gif)
spencerp
The new working version for integrated with WP and non-integrated sites will be updated in a couple of minutes! It should work for everyone now, but Ardentfrost could use a few more testers! If you are interested, just download it at:
http://faq.rayd.org/bbpress_private_message/
Thanks,
Trent
This mod adds AIM, MSN, Yahoo, Google Talk, Jabber, and Skype fields to your profiles. They are displayed when viewing the profile of a user.
It isn’t really a plugin, but… I didn’t know where else to put this.
Please let me know if you’re interested. I’ll post it soon.
Demo: http://www.palmansworld.com/bbpresstest/profile.php?id=1
Get it here: http://www.palmansworld.com/bbpresstest/topic.php?id=1&replies=1#post-1
I have thought about this a was thinking that it really doesn’t matter, but my preference would be to get the login integration with WP first if you are going to have it and this doesn’t apply to everyone because not everyone is going to sync logins with WP. The reason is that seems to be the hardest part and you have to have your key admin being the one you want and associated with the right user in WP.
Once you are ready to go, then test the import of phpBB becauase if it doesn’t go according to plan, you can just empty tables in bbPress and the hardcoding part for integration is still done.
Trent
I’ve got my bbpress install (just a simple thing to test with) integrated into my WordPress database. I’d like to be able to import selectively for testing but no screw everything up — is that possible? I note that the script calls for importing into a FRESH NEW bbpress install.
I haven’t tested this yet, but I just downloaded it now, and will be willing to try that “solution” there ardentfrost..
I’ll report back with any “problems”, or what not.. ![;) ;)](smileys/wink.gif)
spencerp
I have tried it on the latest TRAC version as well as a normal 0.73 version and neither works. Unfortunetely, I never tried it on 0.72 so I don’t know if it ever would have worked. I will try on my other server and see what happens.
Trent
ehm … sorry guys, i didn’t test the new function because i’m running mysql 4.0… on my site. I fixed the $bbdb and added the following config-var:
$mysql41 = true;
If you have any problems simply set to false and it should work well.
Download here:
http://la-school.com/2006/downloads/onlinelist_1_3.zip
Try something like:
#front-page #discussions {
margin-left: 170px;
margin-right: -20px;
width: 420px;
}
#front-page #rightbar {
margin-left: 590px;
width: 150px;
margin-right: -20px;
}
I haven’t tested this, but it would be easier to just keep moving them to the right I think.
Trent
I am testing the new version. You should know that line 26 of the plugin has a syntax error that needs fixing. Change from:
$bbdd->query
to:
$bbdb->query
Trent
when I installed the plugin it had my user online when I was testing it. After 5 minutes it said no one was online. I was still logged in and started viewing posts. It remained with saying that I was not online.
If I then logout and login again, it still says no one is online. If I drop the table in the database and go back to the main page, it says I am online for 5 minutes and then goes back to saying no one again.
What am I doing wrong or is this an error?
Trent