Skip to:
Content
Pages
Categories
Search
Top
Bottom

Custom bbpress theme?

Published on December 14th, 2012 by alex

I’m not good at coding, css and all that. How can i customize bbpress on my site without changing main theme?

[mod] bbPress Recent Topic Advanced and Recent Replies Advanced

Published on December 14th, 2012 by ratsoid2

Hey guys,
I am doing a project needs a forum, so I’m using bbPress 2.0. Since it’s for my company which is multinational and we have more than 1 language spoken, I modified the Recent Replies and Recent Topics widgets to show the parent forum so that people can determine if they can actually understand what is in there. You can add the Show Parent Forum through te widget option and I sticked to the original code format when doing the mod.

I didn’t create a plugin for this, if someone wants to, they can go ahead and do just that. Maybe add others options that they want. Code is below:

http://pastebin.ca/2293446

put it in a .php file, and in functions.php add something like

include TEMPLATEPATH . '/lib/widgets/widget-bbpress.php';

of course, replace /lib/widgets/widget-press.php with your location to the file.

Migrating vBulletin 4.0.4 to bbPress 2.2.3

Published on December 14th, 2012 by glukeoh

Tried to import from my current vBulletin 4.0.4 to bbPress 2.2.3 using the bbPress import function, all forum, topic and replies were migrated correctly however the users we not migrated and are under the admin account, I tried it twice and made sure I checked the convert users. Not too sure what I did wrong.

Other ChortCodes or Links…

Published on December 14th, 2012 by Pietro

Hi Guys!
Please … I found of course the ShortCode Page on https://codex.bbpress.org/shortcodes/ BUT … I do not know if and how insert in a page the EDIT PROFILE code … Any help ??

For instance, when I go to see my profile, I can use different link …
Here’s a ScreenShot on http://www.pietrosferrino.com/ScreenShot.png.
How can I use that links in order to make by myself a page where every single user can use them?
Thank You.
Pietro

New topic notification to ALL registered users?

Published on December 14th, 2012 by RuggedMoose

New here and tried searching, but not sure exactly what I’m searching for..

My client for this build is a church. They are requesting a prayer forum and would like each new topic – prayer request (created by either a new or existing member) too trigger an email notification to all existing members.

I’m assuming there will be a notification, and approval needed from the forum admin for the new topic, but after approval they’d like the post (new forum topic) to trigger an email notification to be send out to all existing members who hove opted in to receive these notifications.

Is this possible?

Thanks so much!

I updated wordpress first before updating buddypress

Published on December 13th, 2012 by AboudiePalisoc

Now I can’t open my site. I know this is my fault, but i’ve been wroking on it for a couple of hours now to fix the problem but i still get the same message 🙁

Warning: Missing argument 2 for wpdb::prepare(), called in /home/apalisoc/public_html/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 176 and defined in /home/apalisoc/public_html/wp-includes/wp-db.php on line 990

Warning: Missing argument 2 for wpdb::prepare(), called in /home/apalisoc/public_html/wp-content/plugins/buddypress/bp-core/bp-core-options.php on line 293 and defined in /home/apalisoc/public_html/wp-includes/wp-db.php on line 990

Looking at these file, seems like the old buddypress is not compatible ith 3.5 wordpress. What should I do to fix this?

/forums/ is a blog page, fix causes errors

Published on December 13th, 2012 by AMEtro

Without the fix located at http://mysitemyway.com/docs/index.php/BbPress I get the default blank blog page at /forums/, with it, I get the error Fatal error: Call to undefined function mysite_after_page_content() in /home/content/39/10190339/html/wp-content/themes/twentytwelve/archive-forum.php on line 25
This only shows up at the bottom, but I can still click on my forum post.
But when clicking on the forum post, I get the errorFatal error: Call to undefined function mysite_before_entry() in /home/content/39/10190339/html/wp-content/themes/twentytwelve/forum.php on line 26
And it does NOT display my post, only displays this error. I tried searching the mysite function, but no solution to be found.
bbPress: 2.2.3
Wordpress:3.5
Site: troop121.us

2.2.3 / WP 3.5 cannot create topics in groups

Published on December 13th, 2012 by Fee

Hello,

absolutely happy about the integration of bbPress 2 into BuddyPress groups I tested this out today. BuddyPress was already installed with group forums on, but not used yet. Installed bbPress completely fresh.
WP 3.5 multisite, bbPress 2.2.3, BuddyPress 1.7-bleeding-#6628, using bp-default theme.
I followed these steps: https://codex.buddypress.org/buddypress-site-administration/migrating-from-old-forums-to-bbpress-2/
and this guide: http://labzip.com/the-definitive-guide-to-buddypress-bbpress-configuration/

Result: I can create everything vom backend: Forums, topics, replies.
I can add topics in frontend to sitewide forums.
But I cannot create topics to a group forum, also in new groups from frontend – only from backend.
I found the bug here that Forum tab doesn’t show up at group creation. I don’t know if that matters – if I turn group forum on after creation in admin panel, the tab is there, with all forum empty messages and new topic form. And these group forums show up in the backend forums view under group forums, so the hierarchy is correct.

Sure this is a test / dev install, no live site. And there’s no hurry, but I’d like to test more out with your plugin 🙂
Is there something I did wrong until here? Or I could try?

thanks, Fee

Topic order bugged after move

Published on December 13th, 2012 by Contemplative Computing

WP 3.5 and bbPress 2.2.3

After moving a bunch of topics from one forum to other (to close the original forum) the moved topics are all floated to the top of their new forums, even if they had a very old freshness before they all said “1 minute” after the move. I tried recalculating the freshness and now it has the correct dates again but they are still out of order so the front page of the forum is full of posts from months ago. Any help?

-Matthew

Fatal error: Call to undefined method stdClass::have_posts()

Published on December 13th, 2012 by Cristescu Bogdan

Hi there!

I hove that someone will help me with this problem. I get an error on topics pages:


Fatal error: Call to undefined method stdClass::have_posts() in /home/jorjette/public_html/wp-content/plugins/bbpress/includes/replies/template-tags.php on line 181

On the bbpress file, the section look like this:


function bbp_replies() {
// Put into variable to check against next
$have_posts = bbpress()->reply_query->have_posts();
// Reset the post data when finished
if ( empty( $have_posts ) )
wp_reset_postdata();
return $have_posts;
}

Well the line 181 is :

$have_posts = bbpress()->reply_query->have_posts();

But I think the problem is how the function call the wp function wp_reset_postdata();.

What can I do to change or resolve the issue? Can be a bug in BBpress plugin? This problem appears when I update to WordPress 3.5

Skip to toolbar