Forum Replies Created
-
sorry was trying to answer quickly over the weekend – should have read dashboard>settings>forums !
The current situation appears to force them to become registered users of WordPress rather than a registered user of my bbPress Forum.
so yes, by ticking the participant role, then when they register, they will be given the participant role when they first log in, and have access to the forums
In reply to: Undefined Variable Errorcan’t see the error on the second one.
In reply to: CSS to remove New Topic option in Forumyou can do this by amending a template in bbpress (which I’ll helo you with if you wish, but requires FTP knowledge)
or you could use
you would set up 2 groups
say group 1 teachers
group 2 studentsin dashboard>settings>bbp private groups>group name settings
then in
dashboard>settings>bbp private groups>topic permissions
you’ll actually see an example of how to do this
In reply to: Undefined Variable Errorok, on the first error – I am only getting this as a keymaster.
Can you check if this is the case for you ?
In reply to: Text disappears after double paragraphok, this forums uses bbpress, so can you try and post what would not work on your site here – the above had double paragraphs.
In reply to: Text disappears after double paragraphbajaf
nasl;na
nsdjvasl
bbpress just uses WordPress accounts.
so if you want your existing users to use bbpress, then set the default role in dashboard>forums and the next time they log in, they will get this access.
In reply to: Undefined Variable ErrorI 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?