Forum Replies Created
-
In reply to: Editor buttons missing since 2.6.8 upgrade
It is a bug introduced in a recent upgrade
see https://bbpress.org/forums/topic/editor-buttons-missing-since-2-6-8-upgrade/
In reply to: Proper way to run forum repair toolsApologies for delay.
I have seen this from time to time with only one website- it seems to happen where a forum has topics and sub-forums as well (as opposed to the higher level being a category), but since I only get involved when it has happened, I’ve never managed to get to a set of circumstances that will replicate the problem. For the site with the issue, they generally either wait for a further post which corrects, or one of the moderators creates a new reply to a topic which fixes. I have suspected it also relates to spam posts, as I have often found them in the mix when the issue occurs.
bbpress does not send a weekly email – is this an associated additional plugin ?
In reply to: bbp_participant is uneditablePut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter( 'bbp_get_caps_for_role', 'rew_amend_role_caps', 10, 2 ); function rew_amend_role_caps( $caps, $role ) { if ($role=='bbp_participant' ) { $caps = array( // Primary caps 'spectate' => true, 'participate' => true, // Forum caps 'read_private_forums' => true, // Topic caps 'publish_topics' => false, 'edit_topics' => false, // Reply caps 'publish_replies' => true, 'edit_replies' => true, // Topic tag caps 'assign_topic_tags' => true, ); } return $caps ; }In reply to: Forum – subscribe to new topics AND replies?In reply to: Editor buttons missing since 2.6.8 upgradenot fixed in 2.6.9
In reply to: After submit error message shows – Comment is added‘spam email blocklist’ is not a bbpress phrase, can you test with just wordpress and bbpress active, and a default theme.
In reply to: Proper way to run forum repair toolsIt should not, but may well be ๐
Can I ask what is wrong – ie is there a newer entry, so freshness is out of date, or it has freshness related to a topic no longer visible etc.
Are sub forums involved ?
That would help me decide how best to proceed
In reply to: Proper way to run forum repair toolsI would always recommend a backup before actions that affect the db.
However all the repair tools affect relationships and counts, they don’t amend or delete forum, topic or reply entries.
Running recalculate freshness will update a single database entry for each topic and forum.
If you have substantial numbers of forums, topics and replies this can slow your site whilst running, but in practice with server speeds nowadays I suspect you’ll not notice – but run at a quiet site time anyway ๐
In reply to: Import from Drupal worked but shows No topicsso are you fixed? or are there remaining problems?
In reply to: 404 error for non logged in usersok,
so I think you have 2 choices1. not show your forum page unless logged in. If all your forums will be private, then this is probably a good option.
You can create a forums page (https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ item 3) and then use a restriction plugin such as ‘restrict content’ to make this a login page – see https://usersinsights.com/wordpress-private-page/ and/or https://kinsta.com/knowledgebase/wordpress-private-page/2. you could use my ‘private groups’ plugin to do this, and still show that these forums exist
In reply to: 404 error for non logged in usersok,
so I think you have 2 choices1. not show your forum page unless logged in. If all your forums will be private, then this is probably a good option.
You can create a forums page and then use a restriction plugin such as ‘restrict content’ to make this a login page – see https://usersinsights.com/wordpress-private-page/ and/or https://kinsta.com/knowledgebase/wordpress-private-page/2. you could use my ‘private groups’ plugin to do this, and still show that these forums exist
In reply to: Double log in for logged out user accessing topicslooks like it is an additional plugin
In reply to: Double log in for logged out user accessing topicsby the way you could try having a main forums page and using restrict to prevent access to that
see
https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ item 3
In reply to: Double log in for logged out user accessing topicsbbpress just uses custom post types and worpdress login, your issue is how restrict content pro is dealing with custom post types. It also looks like you have your forums set as public hence why they appear in the forum list.
The page you get to is a bbpress template, but given that you should not be getting to this page, is probably a red herring.
As restrict content pro is a paid plugin, you first port of call is to them.
You might also wish to look at
https://wordpress.org/plugins/bbp-private-groups/ which might help you in your set up, but might not – I don’t know what you are trying to do ๐
In reply to: 404 error for non logged in usersok so on what url are you getting this ?
In reply to: Dashboard Box times are wrongGreat – glad you are fixed ๐
In reply to: Dashboard Box times are wrongBack end: under Forums it shows the โLast Postโ as 3 hours, 30 minutes ago when I just added a test post. However, under โRepliesโ it shows the correct time in the โCreatedโ column.
Can you test this with a page or post – bbpress is just a custom post type and uses wordpress code for the backend
In reply to: member only 404In reply to: Automatic subscriptionsIn reply to: Upgrade database bloated with spamyeah, I’d suggest you sorted the database first ๐
In reply to: Upgrade database bloated with spamThe dashboard has a message saying we need to perform a manual database upgrade due to the size of the forum.
1. Who/what is this message from ?
2. In essence I would say, yes use Sql (or a bespoke php program) to get rid of the entries, then consider upgrade (dependant on answer to q1 above !!)
In reply to: Problem with the breadcrumbI don’t know if this will help
In reply to: Problem with the breadcrumblink to a live example please