Forum Replies Created
-
In reply to: Undefined Variable Error
I can see that – I’ve logged a trac ticket for this 7
https://bbpress.trac.wordpress.org/ticket/3379In reply to: Undefined Variable Errorthanks – i’ll take a look
In reply to: Undefined Variable Errorso with just bbpress and buddypress you get this error ?
has this ever worked or is it a new issue ?
In reply to: Undefined Variable Errorit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: display views by topic?I can’t see one that works with bbpress currently – I’ll try and take a look over the weekend if I get a chance
In reply to: display views by topic?do you mean the number of times a topic has been viewed?
In reply to: Database broken?🙂
In reply to: Ive deleted a user with the keymaster statut@johnjamesjacoby 🙂
the thread you linked to was for an old version.
if topics are going into moderation, then you need to look at
dashboard>settings>discussion and look at the choices in there, eg Comment author must have a previously approved comment and no. links etc
In reply to: A few Questions about BBPress and BuddyPresssorry this is a bbpress forum – this should get you started with bbpress
I know nothing of buddypress, just directing you to their site
In reply to: Ive deleted a user with the keymaster statutthere must be a second check I missed – you could just change that entry to
a:2:{s:13:”administrator”;b:1;s:13:”bbp_keymaster”;b:1;}
that would do it
In reply to: Forums Dashboard Not Displaying for Other Adminsare they set up as keymasters in their profiles?
In reply to: A few Questions about BBPress and BuddyPressbbpress and buddypress were written by the same people, so work well together.
Second, how do I set up the register and activate pages for BuddyPress to use?
see
In reply to: How can I remove the limit on topic titleThis allows any length title
add_filter( 'bbp_is_title_too_long', 'rew_dont_bother', 10 , 4 ) ; function rew_dont_bother ($result, $title, $max, $len ){ return false ; }and this reduces content
//code to limit number of characters in topic contents to 500 characters add_filter( 'bbp_new_topic_pre_content', 'rew_limit_topic_content' ); add_filter( 'bbp_edit_topic_pre_content', 'rew_limit_topic_content' ); function rew_limit_topic_content( $topic_content ) { /* Check for number of characters in topic contents */ if (strlen($topic_content) > 500) { $revised_content = substr($topic_content, 0, 500); } else { $revised_content = $topic_content ; } return $revised_content ; }Put this in your child theme’s function file – or use
In reply to: Ive deleted a user with the keymaster statutJust had a chance to dig further into this – bbpress will only let a keymaster set another keymaster, so if you’re not a keymaster yourself then by default you can’t do this.
However this code should allow any admin to set a keymaster
add_filter( 'bbp_is_user_keymaster', 'rew_allow_keymaster', 10 , 3 ); function rew_allow_keymaster ($retval, $_user_id, $user_id) { if (current_user_can( 'manage_options' )) $retval = true ; return $retval ; }Put this in your child theme’s function file – or use
BUT THEN TAKE IT OUT AFTER you have set up another – as it makes all admins in effect keymasters.
In reply to: Ive deleted a user with the keymaster statutcan you just tell me if this is a fresh install of 2.6.5, or whether you have upgraded from 2.6.4 recently?
In reply to: Database broken?In reply to: all users need approval, can I change messages?great – glad you are fixed
In reply to: Database broken?something seriously wrong !
In reply to: all users need approval, can I change messages?yes it is buddypress
you can change the text as per below
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address. ' ) { $translated_text = 'new text'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );so just put what you want in place of ‘new text’
Put this in your child theme’s function file – or use
In reply to: Database broken?slow down comes from a flood check function.
The flood time is set is
dashboard>settings>forums>flooding.
for this specific issue, I’d try setting that to a longer period and see if it makes a difference
Then you can disable this function using
add_filter( 'bbp_bypass_check_for_flood', 'rew_bypass_flood' ) ; function rew_bypass_flood () { return true ; }Put this in your child theme’s function file – or use
In reply to: How can I refresh a page twice?nothing I know of, when testing I just hit the refresh button in my browser
In reply to: all users need approval, can I change messages?great – it may well be buddypress or WordPress.
If you give me a link, I’ll register and might be able to tell from the code sent to the browser
In reply to: Database broken?I’m just a bbpress user who helps out here.
I did not respond to allow and other community members to respond if they wished.
I appreciated that you are frustrated, but you are using free software, and with that comes volunteer support. I’m not sure why you feel entitled to get someone to fix your problems for free and at a weekend.
There are 300,000 bbpress sites, and I have been offering support on this forum for 6 years, and have seen most issues that bbpress has had over the years.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back