Forum Replies Created
-
In reply to: BBpress editorial / add roles
this has ranks – which require posts and badges which do not require this – you want badges.
In reply to: trouble the heading in my topicyou’ll need to say precisely where this appears
In reply to: Just installed bbPress – Can’t post replies TopicsIt could be a theme or plugin 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, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
In reply to: Problem with user profilepossibly a conflict, or maybe your site has been hacked.
is this just one username or all ?
It could be a theme or plugin 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, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
In reply to: BBpress editorial / add rolesyou can use the ‘badges’ section of my bbp user ranking plugin to give different users different labels
In reply to: why get error 404 for bbp-pagination-linksgreat – glad you are fixed
In reply to: Is it possible to use plugin feature in functions ?you could move the plugins into the functions file if you really wanted to
it would all look very confusing and be very difficult to maintain
you might have to alter some code to stop conflicts
it would have no effect on speed, a function is a function wherever it runs
you would lose any updates for the pluginsgenerally not a good idea 🙁
In reply to: Password protect the forum pagejust set each forum as private in the forum setup (dashboard>forums) and only registered users will see them.
In reply to: How to ensure old members don’t get notifications?great – glad you are fixed
In reply to: BB Press login problembbpress just us wordpress login, so the issue is probably outside bbpress.
It could be a theme or plugin issue
Plugins
Deactivate all and see if this fixes. if it does, start with bbpress and re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
that is the definitive way, but you could start with any plugins that relate to logging in if you have any.
In reply to: bbpress topic problemthanks for the update 🙂
In reply to: MOVE A FORUMtools>export and you’ll see forums, topics and replies.
but make sure that you have the same users on both sites first.
In reply to: no topics display despite of forum has topicsCan you contact me via my website
(sorry putting an email address directly into support gets me spammed with email for a week!)
In reply to: How to ensure old members don’t get notifications?ok, I’ve released version 3.9.6 of style pack
can you update and test again for me please
In reply to: Time delay before new participants can create topicsI’ve done some digging.
This error is generated when a word used is in the blacklist_keys stored by wordpress in wp-options, which is presumably where your moderated words are stored.
In reply to: Time delay before new participants can create topicsI’m not aware of anything in bbpress that would do this. Bbpress just checks if the user is registered. Are you running caching software ?
In reply to: Participant role don’t get the edit topic linkgreat – glad you are fixed!
In reply to: How to ensure old members don’t get notifications?yes – my plugin activated and user blocked – if that is not happening come back and I’ll take a further look.
can you also let me know if you are using bbp toolkit – not suggesting you do, I just need to know !
In reply to: Participant role don’t get the edit topic linkwhat have you got set in
dashboard>settings>forums>forum user settings>disallow editing after….
In reply to: How to ensure old members don’t get notifications?the plugin just does this automatically for blocked users, no settings involved
In reply to: How to ensure old members don’t get notifications?Thanks, I took a second look at this and I put a filter into my style pack plugin a while ago to stop blocked users getting emails as bbpress does not do this.
If you want to do this directly, add this to your functions file
function rew_fltr_get_forum_subscribers( $user_ids ) { if (!empty( $user_ids ) ) { $new_user_ids = array(); foreach ($user_ids as $uid) { if (bbp_get_user_role($uid) != 'bbp_blocked') { $new_user_ids[] = $uid; } } return $new_user_ids; } else { return $user_ids; } }; // add the filter if(!function_exists('bbptoolkit_fltr_get_forum_subscribers')){ add_filter( 'bbp_forum_subscription_user_ids', 'rew_fltr_get_forum_subscribers', 10, 1 ); }In reply to: Email notifications fontdo you know how to add a function to your functions file if I gave you the details ?
In reply to: Editing Out Contentsimplest way would be to use my bbp style pack plugin
once activated go to
dashboard>settings>bbp style pack>freshness display
if you want to edit a file, then ensure you do this to a copy in a bbpress folder in your child theme.
you’ll find the original template you want to alter in
templates/default/bbpress/loop-forums.php
In reply to: Remove noreply email from notification emailsIn reply to: TinyMCE Errorsuggest you contact the theme author to see if they can fix