Forum Replies Created
-
In reply to: Changing colors on background and textIn reply to: Unable to reply in forum.
this message appears if users post topics ir replies with words that are in the wordpress blacklist
the list is in dashboard>settings>discussion
this list will catch fragments so ‘class’ will be blacklisted if you have ‘ass’ in the blacklist
In reply to: Spam Forum TopicsIf you do not have caching software that might be not accepting the change to the settings, then
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but 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: 404 error with hierarchy rolesok, I think you’ll need to raise this with your hosting company.
In reply to: Allow everyone to reply a topicsso only be able to reply, not create a topic?
In reply to: 404 error with hierarchy rolesyou’ll need to do some fault finding
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but 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: Spam Forum Topicsare these posts topics or replies or both ?
In reply to: Two Indexes on One Websitefrom memory, if you make two categories, and place each of the forums into one of these two as sub forums, so you end up with two categories as ‘indexes’ and their relative forums under them
then use
[bbp-single-forum id=$forum_id] with the category being the forum_id
you will get two forum lists.
Come back if that doesn’t work
In reply to: phpunit for specific versionok, can’t help you further, suggest you post on
https://wordpress.slack.com/messages/bbpress/
and see if one of the devs can help
In reply to: BB Press Conflict with W3 Total Cacheyes that ‘*’ says that anything that starts with should not be cached
eg
/forums*
will not cache
/forums/my-forum
and
/topics*
will not cache
/topics/how-is-the-weather-today
In reply to: participant reply or topic confirmwow, that’s one to remember !! thanks for posting back 🙂
In reply to: Participants can't create topics/post repliesbbpress does not set any pending.
I don’t know if buddypress does, or if you are using another plugin to do pending?
In reply to: phpunit for specific versiongo to
and select Advanced view on the right hand side
and at the bottom of the page you will find ‘previous versions’
you can select and download from there
In reply to: Problem with registrationthanks for posting your solution
In reply to: Problem with registrationmost themes and plugins do not lose settings if you just deactivate, but as theme and plugin authors can write any code they like, I cannot guarantee that !
In reply to: Featured image on topicsI’m not sure exactly what help you are looking for here. do you need to know what form, or how within a form you do that or what help do you want?
In reply to: visual post trun into text formet..plz helppost it in the text editor not visual and it should work
In reply to: Can’t give users custom roles.ok, I presume you meant this code
//code to add tutor role function add_new_roles( $bbp_roles ) { /* Add a role called tutor */ $bbp_roles['bbp_tutor'] = array( 'name' => 'Tutor', 'capabilities' => custom_capabilities( 'bbp_tutor' ) ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_new_roles', 1 ); function add_role_caps_filter( $caps, $role ) { /* Only filter for roles we are interested in! */ if( $role == 'bbp_tutor' ) $caps = custom_capabilities( $role ); return $caps; } add_filter( 'bbp_get_caps_for_role', 'add_role_caps_filter', 10, 2 ); function custom_capabilities( $role ) { switch ( $role ) { /* Capabilities for 'tutor' role */ case 'bbp_tutor': return array( // Primary caps 'spectate' => true, 'participate' => true, 'moderate' => false, 'throttle' => false, 'view_trash' => false, // Forum caps 'publish_forums' => false, 'edit_forums' => false, 'edit_others_forums' => false, 'delete_forums' => false, 'delete_others_forums' => false, 'read_private_forums' => true, 'read_hidden_forums' => false, // Topic caps 'publish_topics' => true, 'edit_topics' => true, 'edit_others_topics' => false, 'delete_topics' => false, 'delete_others_topics' => false, 'read_private_topics' => true, // Reply caps 'publish_replies' => true, 'edit_replies' => true, 'edit_others_replies' => false, 'delete_replies' => false, 'delete_others_replies' => false, 'read_private_replies' => true, // Topic tag caps 'manage_topic_tags' => false, 'edit_topic_tags' => false, 'delete_topic_tags' => false, 'assign_topic_tags' => true, ); break; default : return $role; } }so with that code loaded to my site, if I go to
dashboard>users>all users and edit a user, I can change them to the tutor role, and back again and it saves.
Can you confirm you are using the above code, and that it does not save if you perform the above ?
In reply to: bbp Private Group Non-Logged In User Redirectthat’s great – thanks for posting your solution and a tutorial – that will definitely help others 🙂
In reply to: Problem with registrationif you actually posted ‘After clicking on register button wp shows wp-login.php page but without login form. Only -1 in upper left corner.’ on a wordpress forum, why would they even mention bbpress? Youy must have asked a question mentioning bbpress.
I have looked at the issue and it is a wordpress issue, but general advice
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but 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: Trouble with bbpress repliesif you deactivate the user role editor, does the problem go away?
In reply to: Problem with registrationbbpress juts uses wordpress registration so please post to the wordpress support forum
In reply to: next release ideas1. bbp style pack
3. in current bbpress
4. bbp style packIn reply to: Integration with WP@liyacaty this and several other posts you have responded to are for version 1 of bbpress which was standalone. Posts over about 5 years are version 1, and not worth adding to
In reply to: Freshness Time Incorrect@looimaster I’m just a bbpress user trying to put something back on the open software community
bbpress has https://bbpress.trac.wordpress.org/ as it’s code improvement tool