Forum Replies Created
-
In reply to: BBPress menu missing from the dashbaord
the keymaster role is further down the profile – it is an additional role to the wordpress one.
If you have keymaster set for you, then it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: I can’t create topic on forumthat’s not code from bbpress.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: how to exclude breadcrumb specific forumThis should do it
add_filter( 'bbp_get_breadcrumb', 'rew_remove_xx_breadcrumb' , 10 , 4) ; function rew_remove_xx_breadcrumb ($trail, $crumbs, $r, $args) { if (strpos($trail, 'Forum Name') !== false) { $trail = '' ; } return $trail; }
replace ‘Forum Name’ with the name of the forum you want to exclude
but it would also get rid of the breadcrumb in any forums for a topic with the forum name as the topic title – ie it is just searching for any occurrence of the text in the breadcrumb string !!
In reply to: Forum Description not VisibleIn reply to: BBPress menu missing from the dashbaordgreat – glad you are fixed !!
In reply to: 404 on Forumsit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: 404 on Forumstry
dashboard>settings>permalinks and just click save – this resets the permalinks and may help
In reply to: BBPress menu missing from the dashbaordInstall
once activated go to
dashboard>settings>bbp style pack>bug fixes
and you will see the ability to add back keymaster.
Once done, you can deactivate and delete the style pack plugin, or you may find the other features useful
In reply to: BBPress menu missing from the dashbaordCheck the roles- does the user accessing have the ‘keymaster role’
dashboard>users>all users
In reply to: Forum “root” issuestry this -old but still works
In reply to: Forum “root” issuesit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: bbPress + Elementorthanks for that great update
I’ll take a look at the template
In reply to: Bug: Recount replies in each forumjust run it on my test site, and the counts stay as they should
In reply to: Bug: Recount replies in each forumnot sure I can help further – would require a deep delve into your website
In reply to: Bug: Recount replies in each forumI suspect this is to do with your import, not a bug in the count
hmmm… nor sure how a computer can recognise the difference between an image and a link
In reply to: Disable HTML In Forum Posts🙂
In reply to: Disable HTML In Forum Postsoh and you lose the editor in
dashboard>sttings>forums>Post Formatting>uncheck
In reply to: Disable HTML In Forum Postsusing unfiltered HTML is a wordpress capability, normally given to Editors and above, so standard subscribers should not be able to user HTML
In reply to: hide public forum for user role🙂
In reply to: hide public forum for user roleIn reply to: Restore a topic does not worktry
once activated go to
dashboard>settings>bbp style pack>bug fixes
Fix Threaded Replies Jump
In reply to: Restore a topic does not workI’ve just taken a look at the front end restore.
The bbpress restore function calls a wordpress function
wp_untrash_post
which sets the restored status to ‘draft’.I’m pretty sure that it didn’t used to do that, so am presuming it’s a wordpress change.
However if you are using
then I’ve added a fix for this to the ‘bbpress bug fixes’ tab.
If you want code, then put 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 ('wp_untrash_post_status', 'rew_correct_untrash_status' , 10, 3) ; function rew_correct_untrash_status ($new_status, $post_id, $previous_status) { $post_check = get_post( $post_id ); //update_post_meta ($post_id , 'rew_type', $post_check->post_type) ; //if it's a reply or topic, then change status back to $previous_status if ($post_check->post_type == bbp_get_reply_post_type() || $post_check->post_type == bbp_get_topic_post_type()) { $new_status = $previous_status ; } return $new_status ; }
In reply to: Limit tags to a pre-defined list?There are 2 standard bbpress templates, one for the topic form, and one for the reply form.
My plugin amends these templates, but I’d bet that so does the Yuozify plugin. Plugins tend to load in alphabetical order, so the Yuozify probably takes preference, but in any case, if we reversed it, my plugin would overwrite any changes they have made.
I don’t have access to the Yuozify plugin as it is paid.
Chances are that if we put a combined one in your child theme it would work, but this would be beyond free help, although not expensive.
Maybe contact me via my contact page http://www.rewweb.co.uk/contact-me/ and I’ll see if I can help further
In reply to: Shortcode to add “Edit Profile” link🙂