Published on October 23rd, 2013 by Hart
I am running WP 3.6.1 with BBPress 2.4.1, BuddyPress 1.8.1, and WooThemes Canvas 5.4.0.
I noticed some JQuery code in the header of the homepage (and every other page on the site) for changing the code button to display backticks and for processing a few keybinds. This code originated from bbpress\templates\default\bbpress-functions.php and, according to the if statement that encapsulates the code, should only fire if bbp_use_wp_editor() is true. This if statement seems to be working incorrectly since the code shows up on the header of every page.
Now, this doesn’t cause issues for my site as far as I can see, but it does cause the site to run slightly slower because of the time it takes to load the code in the header. Anyone else have this issue?
Published on October 23rd, 2013 by Mailhilfe
I use the version 2.4.1 and WP 3.6.1, now I looking for hack to modify the bbp_rel_nofollow function.
For two possibilities:
1.) use no nofollow, if the link is set to your own site.
2.) use for all external links target=”_blank”
I hope one of here has an indea and this is possible…
Published on October 23rd, 2013 by modbunker
Hi
Ive setup the forum and have the register link in the widget setup properly. My test profile was able to register and receive an activation email. But when/if I log out and try to sign back in using the BBPress Login Widget, after I click “login” it takes me to the wordpress login?
Is this how the login is supposed to work? Is there a way to login using the widget that doesnt prompt them to login with wordpress? Why after clicking on “login” does it take the user to another login screen and just log them in on that same page?
I dont feel secure if users can maybe access the backend to the site, but it looks like this is how this site works as well?
Ive installed a BBPress plugin called BBPress – No Admin does this solve my fear of them being able to access the backend?
Any help would be greatly appreciated.
Im running WordPress 3.6.1 with BBPress 2.4.1 and BuddyPress 1.8.1
Published on October 22nd, 2013 by fettabachi
WP 3.6.1
bbPress 2.4.1
After creating a new forum and setting visibility to hidden and then publishing it, I can no longer access the forum to edit it – it’s not listed. But the number indicator of my hidden forums does appear above the (empty) list. Clicking on that link has no effect.
The forum does appear on the frontend of the site and functions properly with topics etc. I just can’t access the forum in the backend.
Published on October 22nd, 2013 by David2013
Need help with that error message in forum-topics
`Home › Forums › Test
Warning: sprintf() [function.sprintf]: Too few arguments in /xxx/xxx/xxx/wp-content/plugins/bbpress/includes/forums/template.php on line 187
anyone knows what is wrong?
Published on October 22nd, 2013 by bassjobsen
BBPress adds some jQuery dependent javascript to the header which breaks the defer loading (cause a javascript error).
Javascript will be insert by setup_actions in bbpress/templates/default/bbpress-functions.php
add_action( 'bbp_head', array( $this, 'head_scripts' ) );
Would it be possible to make this script independent of jQuery or otherwise insert it with wp_enqueue_script and set its dependency of jQuery?
I also want to know how to remove this action. I tried:
global $BBP_Default;
remove_action( ‘bbp_head’, array( $BBP_Default, ‘head_scripts’ ) );
Thanks for your attention. I will need this fixes to get WP Defer Loading work with BuddyPress, see: https://github.com/bassjobsen/wp-defer-loading/issues/5
Published on October 22nd, 2013 by Philip John
Hiya,
I’m trying to hide the “allowed tags” bit of the reply form and decided to try and use the bbp_get_allowed_tags filter.
However, the filter doesn’t seem to want to work. I’ve added the following to my theme’s functions.php:
function sibs_bbp_get_allowed_tags($retval){
var_dump($retval);
return $retval;
}
add_filter('bbp_get_allowed_tags', 'sibs_bbp_get_allowed_tags' );
This produces no effect though, almost as if the filter isn’t even working.
Am I using it wrong? Kinda confused…
Oh, and I realise this might not be the best way to hide the “allowed tags” feature. I’ll probably just use another method, but I’d like to discover what’s wrong with what I’ve done here anyway.
Thanks
Published on October 22nd, 2013 by rmemech79
I am trying to add a button to update single topic on click. Using do_action & add_action(‘update_topic’,’bbp_update_topic’,10,2); and to show button I have added: add_filter( ‘bbp_theme_before_topic_title’, ‘update_button’ ); however since the code to show the button is inserted in ‘bbp_theme_before_topic_title’ the do_action is called in every topic title on page refresh. How can I isolate the do_action to work on one single topic title at a time and only fire on button click? I am really lost on this one and appreciate any ideas or suggestions.. Thanks in advance!
Published on October 21st, 2013 by husdom
New registrars are not assigned forum participant… I continually have to go in and manually select participant.
Both buddypress and bbpress installed…
Setting>Forums>Forum User Settings>Auto Role – set to participant
Settings>buddypress>settings>Profile Settings – Enable BuddyPress to WordPress profile syncing
After someone registers they are registered with – Site Role – subscriber and no forum role is designated.
Mr. Fox
Published on October 21st, 2013 by squeebo
I had a custom php site running phpbb, and I’m designing a WP site to replace it. I was planning on using forum software that would integrate with WP and settled on bbpress as the only free (or inexpensive) option.
But now I’m planning on sticking with phpbb, even though it won’t integrate with WP like I want it to. I was willing to install a handful of plugins, but it looks like I’m going to need 20 or 30 plugins just to get some basic functionality for users and the admin. That’s even considering that my user base is not technically oriented and many phpbb features are unnecessary. My site has a single column layout with a header navigation, so the login and other widgets aren’t very useful for me. It looks like it’s possible to get bbpress set up the way I want with enough coding, but I guess I was just hoping for more of a plug and play solution to get my new site up and running with.
I hope you will keep developing bbpress to be a more complete solution.