Forum Replies Created
-
In reply to: Spectator same Capabilitys as Participant
my guess would be that you have pasted this twice into the snippet or created 2 snippets in error
In reply to: style pack not working with generatepressok, so which method in
item 3
are you using to display this page?
In reply to: Spectator same Capabilitys as ParticipantPut 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_change_caps', 10 , 2) ; function rew_change_caps ($caps, $role) { // Which role are we looking for? switch ( $role ) { case bbp_get_spectator_role() : $caps = array( // Primary caps 'spectate' => true, 'participate' => true, // Forum caps 'read_private_forums' => true, // Topic caps 'publish_topics' => true, 'edit_topics' => true, // Reply caps 'publish_replies' => true, 'edit_replies' => true, // Topic tag caps 'assign_topic_tags' => true, ); break; } return $caps ; }
In reply to: Inconsistent navigationThis occurs dependant on theme and set up.
The easiest way to fix it is
once activated go to
dashboard>settings>bbp style pack>Breadcrumbs
and you can set the root breadcrumb to correctly go to where you want
In reply to: style pack not working with generatepressok this is theme/page/wordpress setup rather than bbpress – if you look at the HTML then bbpress starts below this with
<div id="bbpress-forums" class="bbpress-wrapper">
above this – it is not bbpress doing it.
In reply to: style pack not working with generatepressok, your kinda leaving me guessing here as I have no idea what should be showing where 🙂
when I go into community I get what looks like a large forum list.
In reply to: Empty Text toolbar?I can only suggest standard fault finding viz
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
My site with wordpress 5.9, bbpress 2.6.9 and style pack 4.9.1 (which has the bug fix automatically in it) with the visual editor turned on – all works fine
In reply to: style pack not working with generatepressok, this looks consistent to me – it might be a caching, browser or logged in vs logged out issue.
If you still have issues, can you post a link to an image with some pointers as to what is not displaying correctly
In reply to: Empty Text toolbar?sorry, my brain was being fried – Visual is not standard but text is.
bbpress 2.6.7 and after has a bug
try and add this fix to your functions file
if( !function_exists( 'bbpress_browser_supports_js' ) ){ function bbpress_browser_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; } add_action( 'wp_footer', 'bbpress_browser_supports_js' ); }
In reply to: Empty Text toolbar?text isn’t standard on bbpress – how are you achieving this?
In reply to: Trying to remove bbPress causes Critical erroras far as I know buddypress requires bbpress as a forum if you want your social network to have a forum.
BBpress is just a forum, so if you want more than that, then you might need buddypress.
In reply to: Private Forum?In reply to: Cannot create moderator for forumok, I am not sure what is happening
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: Trying to remove bbPress causes Critical errorbbpress is the forum part of buddypress.
I don’t use buddypress on any of my sites – nothing wrong with it, but my sites are just forum based, and I use ‘bbp private groups’ (which I wrote 🙂 ) to run separate forums where I need to.
In reply to: Trying to remove bbPress causes Critical errorGreat – glad you are fixed 🙂
In reply to: Trying to remove bbPress causes Critical errorok, it is a function in your child theme’s function file – line 28
Call to undefined function is_bbpress() in /home/storm/sites/wbc1-otiscreative-co-uk/public/wp-content/themes/Divi-Child-Theme/functions.php:28
So who had created that file? as either they or you will need to amend whatever that part of the file is trying to do.
In reply to: Like button for forumThis, though old, still works
In reply to: Spectator same Capabilitys as ParticipantCan I ask why you don’t just make your spectators into participants?
In reply to: Trying to remove bbPress causes Critical errorok. You should not get an error when deactivating bbpress, so something is causing this outside of bbpress itself.
You say you get a critical error – I need to know exactly what that says. You might need to turn n debug to get this.
Wordpress doesn’t make this easy !!
https://wpforms.com/developers/how-to-enable-debugging-in-wordpress/
In reply to: Trying to remove bbPress causes Critical errorso if you decativate ‘PMPro – bbPress Add On’ first and then deactivate bbpress – does that work?
In reply to: Trying to remove bbPress causes Critical errorok, so what bbpress related other plugins do you have if any?
In reply to: Change nickname@mike80222 – thanks -interesting – I thought bbpress just pulled the name from the database user nickname field, maybe it doesn’t or that plugin doesn’t actually change that value
In reply to: Trying to remove bbPress causes Critical errorwhat other plugins do you have ?
In reply to: Change nicknamebbpress just uses the wordpress display name, so any wordpress plugin that changes this should work eg
In reply to: Trying to remove bbPress causes Critical errorit maybe a dependant plugin issue? ie an additional plugin which needs bbpress
so the standard fault finding applies viz…
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 then deactivate 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