Hello everyone. I am attempting to incorporate bbpress into my current wordpress site at http://www.atriskstoriesofhope.com/wordpress. I don’t want bbpress and wordpress to share any user data as the wordpress site will only be available to members who pay for the service. In short, the bbpress forum will be a kind of online mentoring tool. What I want to is to basically embed bbpress into my wordpress so that when someone navigates threw the site, it will appear as a smooth transitition.
Thanks
Does anyone know where I can still download ThemePress?
Or is there any similar theme for bbPress 0.9?
When I was not logged in, no errors. When logged in, I see a Javascript error:
Error: favoritesToggle[1 === isFav ? "removeClass" : "addClass"] is not a function
Source File: http://trashmedia.co.za/forums/bb-includes/js/topic-js.php?ver=20080401
Line: 55
I have a 0.9.0.1 installation and I checked there and I have the same exact same error.
It looked like the error was related to favorites, so I figured I would mark something as a favorite and see if the error would go away, but it didn’t.
There is already a ticket filed for this problem with a solution posted there as well:
https://trac.bbpress.org/ticket/851
I use this little plugin and my users love it. However, it stops working when using _ck_’s “Change Number of Front Page Topics” plugin.
How to restrict number of Latest Discussions on front page
Not sure which one is causing the problem, but thought it would be worth posting here, in case somebody wants to troubleshoot it.
I see some threads of integrating/patching earlier version of bbpress to accommodate Categories for forums. However- that was for version of 0.8xxx. I have version 0.901 and want to group my forums into categories. How do I do this? I’m shocked that this isn’t part of the standard install…
I’m testing my new BBPress installation; I created a second – “normal” – user account for me, and am posting things to test everything. I noticed that, in Firefox, so far so good. However, I noticed something in IE: when I am not logged in, everything loads fine. But once I’m logged in (as a “normal” member), and navigate to various threads, the page loads, but with “errors” (as seen at the bottom of IE’s status bar). The CSS seems to mess up slightly, but otherwise everything loads correctly.
If I click on the report, it says that the “object doesn’t support this property or method”, on line 56, character 2.
Why is this, and how do I fix it?
What is this, and how do I fix it?
**************
bbPress database error: [Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,IMPLICIT) for operation ‘find_in_set’]
SELECT user_id, meta_value FROM bb_usermeta WHERE meta_key = ‘favorites’ and FIND_IN_SET(‘3’, meta_value) > 0
Warning: Cannot modify header information – headers already sent by (output started at /usr/www/users/trashm/forums/bb-includes/db-mysql.php:106) in /usr/www/users/trashm/forums/bb-includes/pluggable.php on line 224
I’ve updated this theme. If you’ve been having registration issues, please download it again and replace the following files:
login-form.php
register.php
register-success.php
I think you would probably want to edit the template files to include those blocks of code from your static page into bbPress, not the other way around. bbPress needs to do its thing, but you can edit the template files and include the sidebar and header into the bbPress pages.
Hi everyone, i want to know if is possible to integrate bbPress into static HTML webpage, if yes how ? Thanks in advance. To see an example :
This is my site :
http://freewaregeeks.com/
This is what i’m trying to do :
http://www.imagebin.eu/pics/6a0285a7c31bf34bd8522cae809fa74f.png
Feeds access the database just the same as page views, so there should be no delay in new posts/topics showing up in the feeds from bbPress.
I don’t know how often RSS forward or similar services grab those feeds though.
You’re right, it’s the new user notification plugin that I had forgotten about downloading.
I am also developing my wordpress site locally….is it possible to do the same with BBPress.
Have just discovered the bbpress installer page….Its asking for Database Name etc. DO I HAVE TO CREATE A NEW DATABASE???
Hi. Have just downloaded bbpress from this site. Uploaded it to my server……now what? It is not showing up in my wordpress admin plug in section. I presume I have to configure something somewhere….can anyone advise please. Do I need to create a new databse for bbpress or do i still use my existing wordpress database.
Avatar upload requires some editing of your templates to work properly AFAIK.
It also may not be compatible with bbPress 0.9 – but I’m not sure about that.
However, fel64’s “Page” plugin doesn’t work after activating this one:
https://bbpress.org/forums/topic/go-to-last-post-in-topic
glanceup: Just cut and paste it into a plugin template. Here’s what I did (apologies to _ck_ if the headers aren’t quite right):
<?php
/*
Plugin Name: Fix Number of Front Page Topics
Plugin URI: https://bbpress.org/forums/topic/how-to-restrict-number-of-latest-discussions-on-front-page
Description: Fix Number of Front Page Topics
Author: _ck_
Author URI: http://bbshowcase.org/
Version: 0.1
*/
// fix number of front page topics
function bb_custom_topic_limit($limit) {
switch (bb_get_location()) :
case 'front-page': $limit=5; break;
case 'forum-page': $limit=10; break;
case 'tag-page': break;
case 'topic-page': $limit=15; break;
case 'feed-page': break;
case 'search-page': break;
case 'profile-page': break;
case 'favorites-page': break;
case 'view-page': $limit=10; break;
case 'stats-page': break;
case 'login-page': break;
default: $limit=15;
endswitch;
return $limit;
}
add_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit',200);
// required to fix for custom topic limits to calculate correct page jumps
function fix_post_link ($link,$post_id) {
global $topic;
remove_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit' );
if ($topic && $topic->topic_last_post_id==$post_id) {
$topic_id=$topic->topic_id;
$page=get_page_number( $topic->topic_posts );
} else {
$bb_post = bb_get_post( get_post_id( $post_id ) );
$topic_id=$bb_post->topic_id;
$page = get_page_number( $bb_post->post_position );
}
return get_topic_link( $topic_id, $page ) . "#post-$post_id";
}
add_filter( 'get_post_link','fix_post_link',10, 2);
?>
ck — Into what file and where do I paste that code? Thanks. PS I am using bbPress 9.0.1