Forum Replies Created
-
In reply to: Forums no longer appear after upgrade, topics do
” I have a copy of the site running the same plugins but with WP3.8.2 and it’s OK.”
Exactly it may be another plugin that’s having a problem with 3.9 – it may not, but you need to eliminate
In reply to: Problems marking topic as private?could be plugin or theme related
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.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: Theme Recommendationbbpress largely picks up on your wordpress theme, use any of thevdefault ones and you’ll get a great look.
I use twentyten very successfully.
and look at the set up guides
In reply to: Link button not workingPlugins
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.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: bbcodeif you mean the bbpress shortcodes, they’re held in
includes/common/shortcodes.php
at the simplest just comment out line 109
ie change to
//add_shortcode( $code, $function );
bbpress upgrades will overwrite this, so keep a note to change again as bbpress upgrades are issued.
In reply to: Forums no longer appear after upgrade, topics doMay well be a plugin or theme issue
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.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
Is this an existing installation that has gone wrong, or a new one that you are just uploading?
In reply to: Per Forum Permissions by GroupThanks for your patience – simple case of link to file missing.
I have now corrected the plugin.
can you deactivate, delete and then re- download from same link as before
In reply to: Per Forum Permissions by Groupoops – sorry will take a look and be back shortly !
In reply to: Forum reply backgroundTry
#bbpress-forums input[type='text'], textarea{ background : blue !important ; }
In reply to: change forum sidebarJust spotted you post on the wordpress forum :
‘My theme (MH Magazine) has no bbPress template by default, so I copied my full-page-width template and renamed it plugin-bbpress.php. I’ve got the forums page set to this template’
If this is how you have it currently, then it is a sidebar template from your theme that you need, not a full width page one. With a siderbar theme, then wp-tweaks will pick this up and add the forum one to the page.
In reply to: Per Forum Permissions by GroupOk, I’ve just finished a new plugin called
bbp Private Groups
This plugin adds private groups to the forums, allocating users to up to 8 groups, and combinations of forums to those groups, creating multiple closed forums.
download from
Let me know what you think.
I’ll add this to the wordpress plugin repository in the next few days
In reply to: Forum visibility and readabilityOk, I’ve just finished a new plugin called
bbp Private Groups
This plugin adds private groups to the forums, allocating users to up to 8 groups, and combinations of forums to those groups, creating multiple closed forums.
download from
Let me know what you think.
I’ll add this to the wordpress plugin repository in the next few days
In reply to: Password Protect Each ForumOk, I’ve just finished a plugin called ‘bbp Private Groups’
This plugin adds private groups to the forums, allocating users to up to 8 groups, and combinations of forums to those groups, creating multiple closed forums.
download from
Let me know what you think.
I’ll add this to the wordpress plugin repository in the next few days
In reply to: bbpress custom user role ?Great, do come back if you have any further queries !
In reply to: bbpress custom user role ?ok,
so create a file called bbpress-functons.php as above and in to this put
<?php //code to add tutor role function add_tutor_role( $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_tutor_role', 1 ); function tutor_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', 'tutor_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; } }
This sets up a role called ‘tutor’ – just change this name everywhere to the one you want, and then edit the capabilities.
the default capabilities for each role are :
https://codex.bbpress.org/bbpress-user-roles-and-capabilities/
you’ll probably want to make delete topics and delete replies true
In reply to: bbpress custom user role ?do you know how to add some code to your functions file – if I gave you the code?
In reply to: Sidebar formattingoh and sorry – see
for how to add this -several options.
In reply to: Sidebar formatting.bbp-remember-me {
white-space: nowrap;
}seems to work – try it and come back if not
In reply to: where meeting, scores posts?In reply to: Suffusion bbpress pack issuesgreat, so you’re fixed ?
In reply to: New users/'Participants' unable to create topicsmaybe a theme or plugin conflict
try
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.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: Sibe Bar Missing with Striking MultiFlex ThemeHave you tried
In essence you need a .php from your theme that has a sidebar, and rename this bbpress.php within the root of your theme.
In reply to: Suffusion bbpress pack issuesbit tied up at the moment, but have you referred it to suffusion, they should be able to give you removal instructions.
In reply to: Very simple question — changing font sizedo you mean dashboard>appearance>edit css ?
If so, then this is a feature of your particular theme and not common.
If you mean elsewhere, come back.