I installed BBpress on wordpress, but when using HTML tags then these are not working.
They are also not white or anything, it’s totally not in the post. Bold, Italic etc are working fine.
For example which code is not working:
eg
http://www.naturalparenting.com.au/natural-parenting-forums/topic/what-did-your-babies-weigh-at-birth/
I have tried everything. I figure its something simple but cant work it out
Latest wordpress and bbpress version.
Can one bbPress plug-in work across different WordPress sites ? I would like to put it on : http://zestetik.fr/magazine/ & http://www.anti-age-magazine.com/ ? (same questions/answers will be display on both sites)
Thanks !
and the second problem is that i have changed the wordpress login url to
http://ifunts.cf/member-area how i can change it in bbpress login widget so it will work
is there any file i can modify i know php pretty well but don’t know wordpress dev and bbpress very well but i am intrested in solving the issues please help me and thanks for the reply
Tried applying the code and give me warning after activating the plugin
/* Plugin Name: BBPress Close Old Posts Description: Close BBPress 2.0+ posts that haven’t been updated in X days. Author: Raygun Version: 0.1 Author URI: http://madebyraygun.com Originally found here: https://wordpress.org/support/topic/plugin-bbpress-new-topic-notifications-new-reply-notications-too?replies=13 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ register_activation_hook(__FILE__, ‘bbpress_topic_scheduler’); add_action(‘bbpress_daily_event’, ‘bbpress_close_old_topics’); function bbpress_topic_scheduler() { wp_schedule_event(time(), ‘daily’, ‘bbpress_daily_event’); } function bbpress_close_old_topics() { // Auto close old topics $topics_query = array( ‘author’ => 0, ‘show_stickies’ => false, ‘parent_forum’ => ‘any’, ‘post_status’ => ‘publish’, ‘posts_per_page’ => -1 ); if ( bbp_has_topics( $topics_query ) ) while( bbp_topics() ) { bbp_the_topic(); $topic_id = bbp_get_topic_id(); $last_active = strtotime( get_post_meta( $topic_id, ‘_bbp_last_active_time’, true ) ); if ($last_active < strtotime( ‘-60 days’) bbp_close_topic( $topic_id ); } } ?>
Hi!
I’m just begining with Private Groups plugin (and even with wordpress!), that seems to be a great plugin to manage users permissions to access to bbpress forums.
Just let me introduce my “configuration” in few words : I’m working with
– 2 forums (A and B)
– 2 groups (1 & 2)
– Group 1 is authorised to work with both forum A and B.
– Group 2 is only able to work with forum B.
I have 2 questions about Private Groups behaviors :
– SEARCH FUNCIONALITY : bpress search form or widget deal with all topics of all forums. I mean that the search functionnality does not take into account groups that are defined with Private Groups when displaying the results list. That’s true that a non authorised user can’t access to the detail of a topic (nor reply to it), but he can see all topics and even their content. Is there any solution to force the search functionnality to only deal with authorised combination forum/groups defined with Private Groups?
– PARENT FORUM : maybe I’m wrong but the only way I’ve found to work with Private Groups is to define one parent forum (the father of all) and subforums. The point is I have no need of any parent forum. Is there anyway to keep all forums at the same level without define any parent forum?
Thank you for any help or idea…
mareva
Hi, i have reset the forum, and run import again.
These are my selections:
source platform: vbulletin3
–database connections data–
row limit: 100 row
delay time: 1 minute
convert users: checked
restart: checked
clean previous installation: checked
log:
– start conversion
– no data to clean
– user conversion (0-99)
– user conversion (100-199)
– cuser conversion ….
– Delete the default password of WordPress users (1200 – 1299)
– forum conversion (0-99)
– calculation forum hierarchy (0-99)
– conversion threads (0-99)
– conversion threads (100-199)
– conversion threads (…)
– conversion threads (12600-12699)
– No stickies to stick
– No super stickies to stick
– No tag to convert
Repair any missing information: Continue (<- this is a link to /wp-admin/tools.php?page=bbp-repair)
WordPress database error: [Table ‘vbulletincopy.tagthread’ doesn’t exist]
SELECT convert(tagthread.threadid USING “utf8”) AS threadid,convert(tagthread.tagid USING “utf8”) AS tagid,convert(tag.tagtext USING “utf8”) AS tagtext FROM tagthread AS tagthread INNER JOIN tag AS tag USING (tagid) LIMIT 0, 100
After this message i click “Continue” and run the “repair page” one at a time.
All operations are successful except “Count the number of threads in which each user” has replied … Failed!
No replies on forum. Only one replies for each thread.
I have wordpress 3.9.1 and BBpress 2.5.3
Two ideas.
1. If using a multi-site, start a subdomain for bbPress and activate it on that site alone.
2. Using a plugin called – https://wordpress.org/plugins/plugin-organizer/ As Diphda mentioned, bbPress loads on every page. This plugin can block any plugin from loading on pages where it is not required (for bbPress where there are no short codes or forums).
The only draw back is your Admin panel will still be sluggish for those who are experiencing a similar lag, but visitors will experience faster load times.
Hope this helps.
I found this code in my files, try this
/*
Plugin Name: BBPress Close Old Posts
Description: Close BBPress 2.0+ posts that haven't been updated in X days.
Author: Raygun
Version: 0.1
Author URI: http://madebyraygun.com
Originally found here: https://wordpress.org/support/topic/plugin-bbpress-new-topic-notifications-new-reply-notications-too?replies=13
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
register_activation_hook(__FILE__, 'bbpress_topic_scheduler');
add_action('bbpress_daily_event', 'bbpress_close_old_topics');
function bbpress_topic_scheduler() {
wp_schedule_event(time(), 'daily', 'bbpress_daily_event');
}
function bbpress_close_old_topics() {
// Auto close old topics
$topics_query = array(
'author' => 0,
'show_stickies' => false,
'parent_forum' => 'any',
'post_status' => 'publish',
'posts_per_page' => -1
);
if ( bbp_has_topics( $topics_query ) )
while( bbp_topics() ) {
bbp_the_topic();
$topic_id = bbp_get_topic_id();
$last_active = strtotime( get_post_meta( $topic_id, '_bbp_last_active_time', true ) );
if ($last_active < strtotime( '-10 days') )
bbp_close_topic( $topic_id );
}
}
?>
change the -10 days to whatever you want
Basically just create a file called say ‘close.php’ and put this code in it. Create a directory in your site
wp-content/plugins/close
and put the file in there
then go into
dashboard>plugins>installed plugins and activate it
I haven’t tested this.
this is a widget logic problem, but try
!is_page(βpage_nameβ) || (is_single() && !is_bbpress())
if not, then try the support page, but is not well responded to
https://wordpress.org/support/plugin/widget-logic
Following some of the code I found on the site to re-enable TinyMCE I am unable to reply to any comments. The TinyMCE box appears, but when you attempt to click inside it doesn’t allow you to. It appears that the iframe contents are deleted when the jQuery moves it to the temporary div. I have found this thread: http://wordpress.org/support/topic/tinymce-in-relation-with-nested?replies=1 as well as a few others I can’t seem to find now with the same issue. I attempted to get the jQuery working but with no luck, would appreciate if someone can file a bug report, I can’t figure out where to. Thanks.
When a plugin is updated via WordPress’s Admin Interface
- It is deactivated
- New files are pulled down
- It is reactivated
Problem is, the bbPress Notify Spam plugin isn’t coded in such a way to fail gracefully when bbPress is not active. Thus when WordPress tries to reactivate bbPress, a fatal error occurs. Not because of bbPress, but because bbPress is temporarily not there, and bbPress Notify Spam tries to call bbPress functions.
The fix is for that plugin author to use bbPress’s sub-actions and filters to include its files and execute code, and not call bbPress core functions without confirming bbPress is active previously in its call stack.
Sorry y’all for the inconvenience, but there’s little we can do in bbPress core to prevent this type of thing.
Hi,
I’ve recently migrated a large forum from phpBB to bbPress using the import tool (which has gone extremely smoothly – so thanks to all who have worked on the importer tools!)
Users have been imported successfully, and I can login via wp-admin with the password that was used on the previous phpBB forum… All of that is glorious! π
On our site however, I’ve created an ajax login so visitors never have to get in via /wp-admin
The issue I’m having is that whatever code is used to check a users old password and convert it to a WordPress encoded password is not being run when I attempt to log a user in via wp_signon().
Is there a filter or something I can run to ensure that bbPress runs the password conversion when a user logs in via my ajax login prompt?
Just uploaded https://wordpress.org/plugins/bbpress-notify-nospam/ 1.5.3. No change. Site still down…please help.
@pwdesign, see this post, basically for some reason bbPress is being disabled after updating under certain conditions (not exactly sure what these are yet).
I think this plugin is supposed to do that, I haven’t tried it personally π
https://wordpress.org/plugins/bbpress-forum-redirect/
If I login via http://localhost/wp-login.php I get logged in and returned to the home/front page http://localhost/
If I login via http://localhost/wp-admin the url becomes http://localhost/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%2Fwp-admin%2F&reauth=1
If I login via a separate WordPress installed in /pref as a sub directory of the localhost install via http://localhost/pref/wp-admin the login URL becomes http://localhost/pref/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%2Fpref%2Fwp-admin%2F&reauth=1
Note how the sub folder on my install is also /pref and is also part of the new redirect URL, for whatever reason, most likely a .htaccess issue or some other oddity in your config is is changing the redirect to /wp39.
With multiple WordPress installs this quite easily happens and you need to make sure you are loading the correct WordPress install you are actually intending to load π
The latest WP and bbPress versions,yes…actually tried it again with a fresh install of WP, but same issue and with twenty fourteen and thirteen.
No bbpress login widget, just logging in with the Default WordPress admin login form to get to the dashboard. So correct on the example wp-login.php url you posted. I will use my localhost on XAMPP as an example:
http://localhost/pref/wp-login.php
If I use http://localhost/pref/wp-admin I do get logged into the dashboard. The url becomes
http://localhost/wp39/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%2Fwp39%2Fwp-admin%2F&reauth=1
when hitting the wp-admin url method.
Are you using WordPress 3.9.1 and bbPress 2.5.4?
I’m going to need some detailed steps to reproduce the issue as I cannot.
Are you logging in through the bbPress login widget?
Are you logging in via http://example.com/wp-login.php and then redirected to your front page?
What happens if you open http://example.com/wp-admin and login via that URL?
(After hitting the above URL you should now have a URL similar to:
http://example.com/wp-login.php?redirect_to=http%3A%2F%2Fexample.com%2Fwp-admin%2F&reauth=1)
Hi Stephen,
I have updated my site to WordPress 3.9.1 and bbPress 2.5.4.
I have the post reply button, but the reply href of reply is not related to the post ID, but it is related to new post.
In this forum instead you have https://bbpress.org/forums/topic/topic_name/?bbp_reply_to=147344&_wpnonce=fda342eb5b#new-post
Is it normal?

Hi,
I tried everything : desactivate plugins, change themes, and even reset wordpress database..
I followed every possible guide.
but nothing worked! I always get the bullet points as a list for my forums..
The link to my forum-test: http://comment-devenirriche.com/forums/
Can anyone help ?
Thank you π
WordPress version: 3.9.1, bbPress version: 2.0.1, my site: http://comment-devenirriche.com/
I just installed bbPress and discovering that as the admin, if I log into my WordPress dashboard, I am redirected to the site’s front page…no dashboard. I have to add a sub page to the url in my browser to get there. If I enable the admin bar, then I can use that to get into the dashboard home page. However, if I uninstall bbPress, it goes back to normal…I login and I am on my dashboard home page.
Any ideas what is causing this?
Hello Stephen Edgar,
thanks for your reply. I did turn on WP_DEBUG, as I just got an “error” in the header part of my site. As I wanted to know what’s going on there, I activated WP_DEBUG. I guess the “error” is coming from the “warning”, not the “notices”.
I already tryed to disable all of my modules, but the error was still there. I am not sure where it is coming from exactly. I also did empty my functions.php, but nothing changed. The error also appears on other themes, not just my custom one.
I followed your links, but I think my technical understanding is not enough, to understand what the solution is. I am more of a designer than a coder.
I guess I have to reinstall wordpress completly, but I am a bit afraid, that the error will come back at some point.
The stange thing, as said, is, that the error does not appear on a mirror installation, which is exactly the same as the main one. Well, sort of. There’re even mor plugins running, for testing purposes.
Anyway – Thanks for your help so far. I will try a few other things. I also did contact our server admin, as we are running a root server. But I am not sure, that he can help me on this.
Thanks again, and have a nice sunday. π