Forum Replies Created
-
In reply to: Forums index vs custom page shorturl
If I have understood correctly, you need to change the forums slug
Dashboard>settings>forums and change forum root slug to in your case discuss
Just had a two minute play with
https://wordpress.org/plugins/wp-useronline
Looks like it would sort your who’s on line.
In reply to: Forum layoutis it just the words ‘Mayrhofen’ Forum you are wishing to move?
In reply to: Modifying Private replies to work with topicsHave you tried posting to their support forum?
https://wordpress.org/support/plugin/bbpress-private-replies
In reply to: Display Location User Meta below User RoleI have no idea of this plugin works if you are using buddypress (it does with bbpress) but might be worth a quick test – let us know either way !
In reply to: Theme Recommendationyes and yes !
bbPress uses the wordpress login, you simply have an additinla contro, to set the user access level to the forums.
So each users has a wordpress access level and a bbpress access level, but only one login !
In reply to: Putting the @username below namegreat – glad you’re fixed !
In reply to: bbPress Topic / Post Category and Synchronizationnot sure if this will do what you want?
In reply to: New replies firstIf you want to try just the latest reply, then try
function change_reply_order() { $args['order'] = 'DESC'; $args['posts_per_page'] = '1'; return $args; } add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
But I suspect it will have some weird effects on the site, and of course you’ll never see anything but the latest post, so if pupil a posts and a minute laters pupil b, then you’ll never see pupil a’s.
or do you mean that for each topic, pupil a would be pupil a’s reply, pupil b would see pupils b’s reply etc.?
In reply to: New replies firstTry putting this in your functions file
function change_reply_order() { $args['order'] = 'DESC'; return $args; } add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
I haven’t tested, so come back if it doesn’t work, it should do topic then replies with latest at top
In reply to: Forums no longer appear after upgrade, topics dobbpress should have no problems with any database prefix that wordpress accepts, it just rides on this
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