Search Results for 'bbpress'
-
Search Results
-
Hello everyone,
I’m running bbpress with the BrickYard theme and I’m use the right sidebar.
Actually I was able to display the sidebar to all of my blog but the forum : I deleted the line “<?php get_sidebar(); ?>” from the file page.php then I saved it under the name of “bbpress.php”.
It works but the forum isn’t at a full width :

And I tried to get the full width but I’m not able to, after some hours I give up.
I read the documentation of the theme, there is a “template-full-width.php” within the theme but it doesn’t work because it’s page.php without the line that gets the sidebar and that I removed so the problem is still there (I believe that it should auto-resize without the sidebar but it’s not the case).
Best regards,
ananotheruserPS : Sorry about my crappy english.
Topic: bbpress not logout
bbPress not logout
I install bbPress and can not logout for wordpressWP version 4.3
2.5.8 bBPress
theme enfoldPlease register in
http://diversidadculturalyjusticia.com/forums/
and tries to logout
not workor in private send you a login data
if I disable bbPress everything works normally
sorry for my English
I an constructing a site called renthoy and I created a forum using bbpress as i went on the forum and posted something the reply or post wont show up and I tried resetting bbpress still nothing happen the link to the forums is http://renthoy.com/forums/.
Topic: Link count for moderation
Actually, bbPress uses the link count as configured for comment. Since many times in a forum users cite links of the same site (to help other to find information), it would be very useful to have a callback for each extracted link so a plugin che intercept and eventually say that “it has not to be counted” (for example because it is in the same domain).
Thank you, Stefano.
Topic: Moderation words
Hi, bbPress (at least version 2.5.8) uses the comment moderation words of WordPress, skipping the moderation check if that field is empty. Actually a forum could have different black list words.
I would like to ask for that feature: an hook to filter/change/enqueue moderation words before bbPress will use them, so I can create a specific configuration in a theme or like.
Thank you, Stefano.
Topic: Add/Change User roles
Hi support,
http://sincebeingsingle.com/insight/topic/share-site-others/
I want to know how to add a new BBpress user role name.
I would like three roles:
– Team Member
– Community Member
– AmbassadorI would also like each of these roles to have a different colour label.
Just like this website: https://ultimatemember.com/forums/topic/how-did-you-find-out-about-ultimate-member/
I have seen a few topics about this, but these topics are from 1-3 years ago. I want to know if there is easier way to do this than changes .php files?
I have tried User Role Editor and Members plugin with no luck. These plugins add new WordPress user roles, but not BBpress Forum user roles.
I would really like to know how to do this.
Thanks again,
KamTopic: PHP7 compatibility
Hi, Can the latest bbPress version run on PHP7 configuration? Does bbPress support PHP7.0?
Thanks.Hi,
We are using BBpress for user registration and forums we will be activating in the near future on our website. We are also using the All In One WP Security Plugin, in here is a option to rename the login page, so directly going to mysite.com/wp-admin should not work and should be mysite.com/*newadmin*
However this did not work initially, we had to log in on the /*newadmin* but still had to go to /wp-admin to gain access to the dashboard.
We disabled all other active plugins, and the problem was solved, after testing it showed that once BBpress plugin was disabled the feature worked as intended, loggin into /*newadmin* would get me instantly into the dashboard.
I’ve also requested help on their end, but since 2 plugins are involved, Do you guys have any suggestions as to what might cause this & what might solve this issue?
Any help or suggestions would be great. We just want to rename the admin part, so we are not bound to the wp-security option, just seemed easy.
Heres my initial post on wordpress.org support for all in one wp security:
https://wordpress.org/support/topic/renaming-the-login-cant-enter-with-the-url?replies=4#post-7342568We are using a fully up to date version of WP & all plugins.
Help! My bbpress isn’t being indexed on Google or other search engines. Can anyone advise me on this? Thank you.
I’d like to add some custom buttons/functionality to the visual editor in the forums on my site. I have some working code that adds the buttons and functionality to TinyMCE in the WordPress admin for pages and posts but I haven’t been able to get it working in the editor for the forums. Here’s some of that code (exluding the actual JS) that adds two buttons (labeled braille and simbraille) to the visual editor in admin.
`//custom braille font buttons for tinyMCE
function braille_add_buttons( $plugin_array ) {
$plugin_array[‘braille’] = plugins_url( ‘/js/nba-editor.js’, __FILE__ );
return $plugin_array;
}
function braille_register_buttons( $buttons ) {
array_push( $buttons, ‘braille2000’, ‘simbraille’ );
return $buttons;
}
function braille_font_buttons() {
add_filter( “mce_external_plugins”, “braille_add_buttons” );
add_filter( ‘mce_buttons’, ‘braille_register_buttons’ );
}
add_action( ‘init’, ‘braille_font_buttons’ ); `I found another post in the bbPress forum from somebody else trying to do the same thing (https://bbpress.org/forums/topic/hook-into-bbpress-teeny-mce/) and someone suggested applying a filter to bbp_get_teeny_mce_buttons but that poster couldn’t get it working and I can’t figure out how to adapt the already working code I have to this either. I think eventually that poster found a work around but I really need to get this working so any help would be greatly appreciated!
The forum is located at http://natlbraille.wpengine.com/forums/
I’m using bbPress 2.5.8 on WordPress 4.3. If you need any additional info I’m happy to supply it, just ask. Thanks in advance for any help!