Hi, I got some spam, people who register and post spam. I delete it.
How to prevent it from post, and wait until I approve? (to do like comments on posts).
Thanks
Hi, I got some spam, people who register and post spam. I delete it.
How to prevent it from post, and wait until I approve? (to do like comments on posts).
Thanks
Hello all, just imported a VB4 forums into bbPress. No errors. If I click on the Forums link to show all my forum categories (first image below), I see them all as they should be, along with a count of how many Topics and Posts there should be. Also shows when the last post was correct. However, when I click into the actual forum category (Advertisers for example, second image below), I don’t see any topics. The strange thing is if I do a search, I can see topics, replies, etc. I just can’t see them in the forums. Any ideas? Thanks so much.
Hi all,
I have this site
http://www.analisidelsangue.net with bbpress forum here
(about 5k users and 20k post and replies)
After switch to wordpress 4.7 I don’t see more the replies of forum in my backend
I’m using HHVM instead of PHP 7.0– if I use PHP 7.0 all works properly.
But I’d like to use HHVM because my blog is faster
Please can you help me in some way?
thnkx a lot
alessandro From italy
Hye there is my site http://teamscheme.org. i used a page for showing my forum . but the forum is not visible for public ( privacy of the forum is public) but I as a user can see the forum (whenn logged in) i want my forum to show publicly aslo I want that only registered user can post in the forum but any one can reply i.e unregistered user. is there any way to do that?
Hi, for the record I have now uninstalled every plug in and tried the 2012 them approach, but have not been able to get bbpress going under either circumstance.
Curiously, I also tried a different bulletin board plugin, and while their console did appear in the menu, their forums did not.
Any leads?
Ive deactivated bbpress and all the other plugin once and reactivated again but forums doesnt appear , why?
please look at it it gives page not found error:
http://gameslopedy.com/forums/
Hello,
Im working on a bbpress forum meant for businesses. I’d like to add a “company” field to the registration which input should show up on the bbpress profile page.
I’ve been looking all over the place but cant find a solution. I found some simular problems but none are the same, or without answer. I did find some plugins which can takeover the login proces (like ultimate member) but none who can do what i want: add a custom field and show its input on the profile page.
My theme is:Dynamix
bbpress version: 2.5.11
Anyone who had the same problem?
HI,
I used to have this code in my forum to make it full-width.
/* Hide SideBar in bbPress Profiles and Topics*/
function disable_all_widgets( $sidebars_widgets ) {
if ( function_exists('is_bbpress') ) {
if (is_bbpress()) {
$sidebars_widgets = array(false);
remove_all_actions('bp_register_widgets');
unregister_sidebar( 'bp_core_widgets' );
}
}
return $sidebars_widgets;
}
add_filter('sidebars_widgets', 'disable_all_widgets', 1, 1);
Is there a way to apply full-width only for Forums and Topics (opened)?
Thanks,
Hi Guys
I have TinyMCE loading in my forum for when people post to it and I’m using a plugin ( https://en-au.wordpress.org/plugins/visual-editor-custom-buttons/faq/) that allows me to add custom buttons to TinyMCE. These buttons appear just fine in the backend when creating posts/pages but the new buttons do not appear in the forum post area.
I have this function in my functions.php for adding TinyMCE in forum.
function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = array('toolbar1' => 'bold, italic, underline, strikethrough, blockquote, alignleft, aligncenter, alignright, alignjustify, bullist, numlist, outdent, indent, cut, copy, paste, undo, redo, link, unlink, image, removeformat, pastetext',);
$args['quicktags'] = false;
$args['teeny'] = true;
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
How do I get the buttons created in this plugin to appear in the front end forum area?
Hey guys,
I have the most current version of bbPress installed: 2.5.11
Just installed WordPress 4.7
These Top Level menus are not being displayed due to a “capabilities” issue. Forums, Topic and Replies. ie I do not have sufficient permissions to view those menus or any bbPress menus anywhere.
If I go to the WP Dashboard and click links in the metabox I see this error: Sorry, you are not allowed to edit posts in this post type. I will be looking at forums/capabilities.php and other capabilities.php files to see if I can figure this out, but just wanted to give you a Heads Up about this. Of course this could be isolated to my sites. I deactivated all other plugins and the same issue is still occurring. So it does appear to be an issue directly with bbPress capabilities.