Forum Replies Created
-
In reply to: Query to show selected topics by ids
nothing I know of doe this at the moment
If it’s a fixed list then just cascade eg
[bbp-single-topic id=4096]
[bbp-single-topic id=4097]
[bbp-single-topic id=4099]
[bbp-single-topic id=4099]if you’re doing it programmatically then just do the ‘echo_shortcode’ in a foreach loop
or crack open /inclues/common/shortcodes and you can use the code form there to create what you want
In reply to: Query to show selected topics by ids[bbp-single-topic id=$topic_id] – Display a single topic. eg. [bbp-single-topic id=4096]
In reply to: BBpress stopped and vanishedok, so what is the bbpress role for the user ID you are using to examine the dashboard?
In reply to: BBpress stopped and vanishedok try
dashboard>settings>permalinks and just click save – this resets the permalinks and may help
In reply to: BBpress stopped and vanishedI’ve just upgraded my test site to wordpress 5.8 and all looks ok.
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: BBpress stopped and vanishedso has it stopped working in front end, or just disappeared from back end or both?
In reply to: All Replies 502 Errorok, those all look ok.
All I can suggest is that bbpress has got corrupted on your installation.
I’d suggest
deactivate and delete bbpress
reinstallYou won’t lose any data if you do that.
In reply to: All Replies 502 Errorwhat have you got set in
dashboard>settings>forums and the various slugs are set to what names?
In reply to: Need Help with Registration LinksI suspect that this is a woocommerce issue. bbpress just uses wordoress login, so it looks like something (eg woocommerce) is hooking to the wordpress login and taking you to shop.
May well be a setting in woocommerce as to what to do when a user logs in
In reply to: how to exclude breadcrumb specific forum🙂
secondary_item_id is a buddypress database item, so looks like a hook might be needed.
Can I ask you to log the issue with the buddypress support to see if they already know this.
https://buddypress.org/support/
If they can’t help, then come back and I’ll try to take a look for you
In reply to: BBPress menu missing from the dashbaordthe 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