Forum Replies Created
-
In reply to: where to put bbpress.css in child-theme
so did you try my code???
In reply to: where to put bbpress.css in child-themeok – can only suggest 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: where to put bbpress.css in child-themeTry :
function rew_add_custom_role( $bbp_roles ) { $bbp_roles['bbp_global_moderator'] = array( 'name' => 'Globale moderator', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as moderator ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'rew_add_custom_role', 1 );In reply to: where to put bbpress.css in child-themeIt’s because you haven’t set the moderate primary cap 3rd one down in the list below.
The full default mod caps are
// Moderator case bbp_get_moderator_role() : $caps = array( // Primary caps 'spectate' => true, 'participate' => true, 'moderate' => true, 'throttle' => true, 'view_trash' => true, // Forum caps 'publish_forums' => true, 'edit_forums' => true, 'read_private_forums' => true, 'read_hidden_forums' => true, // Topic caps 'publish_topics' => true, 'edit_topics' => true, 'edit_others_topics' => true, 'delete_topics' => true, 'delete_others_topics' => true, 'read_private_topics' => true, // Reply caps 'publish_replies' => true, 'edit_replies' => true, 'edit_others_replies' => true, 'delete_replies' => true, 'delete_others_replies' => true, 'read_private_replies' => true, // Topic tag caps 'manage_topic_tags' => true, 'edit_topic_tags' => true, 'delete_topic_tags' => true, 'assign_topic_tags' => true, );you are missing
'moderate' => true,from yours !
use
and click the ‘website details’ section of the report
if it’s wordpress it will say.
Don’t offhand know what the others appear as
In reply to: Background Content BoxGreat – glad you’re fixed !
In reply to: Background Content BoxAlso, what profile is bbpress putting there on the left and how do I edit what shows?
can you post a more detailed explanation – I don’t understand your question !
In reply to: Background Content Boxon your first it is being affected by
http://olympusnetworkmc.com/wp-content/plugins/bbpress-new-ui//inc/css/dark.css?ver=4.4.2
change line 1411
media screen #bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content {
padding-left: 5px !important;
}to from 5px to say 30px
In reply to: Theme For Forum Orientated Web Siteyou can also then style it using
In reply to: Profile next to forum post is offon first issue – We need a link to your site to be able to see what is happening
On second – this will let you display a badge dependant on no. posts – load it and if you like what it does I can give you a piece of code to make it work for user levels
In reply to: Sidebar on the wrong sideIn reply to: Change freshness timing typeno problem
In reply to: Change freshness timing typeum yes – that’s how I did it ๐
Suggest you download the plugin and crack it open to see how it was done
In reply to: Theme like bbpress.orgbbpress doesn’t have theme’s – it uses your sites theme, but sometimes integration is not great.
Unfortunately your link produces a certificate error (The security certificate presented by this website was issued for a different website’s address.) on the https side, so I didn’t visit.
If it is just styling rather than function try my plugin
https://wordpress.org/plugins/bbp-style-pack/
Otherwise give us a valid link, and I’ll take a quick lookIn reply to: Change freshness timing typeload my plugin
In reply to: Excluding Forums from Recent Topics Widgetbut yes as Pascal says, you do need to list the forums that you want to include
and I have just updated the plugin for a technical error which should not affect you, but you may want to load the latest version from my site
In reply to: Excluding Forums from Recent Topics Widgetok, I think I know the problem.
If you copied/pasted the shortcode from my website, it incorrectly formats the shortcode on your website.
I’ve now corrected, so if you go back onto my website and copy/paste then it will now work.
or just type the shortcode in !
In reply to: Replies Transparency/Opacity Issuegreat – glad you’re fixed !
In reply to: where to put bbpress.css in child-themeGreat – glad you’re fixed !
In reply to: Excluding Forums from Recent Topics Widgetcan you repost your screenshot link?
In reply to: Excluding Forums from Recent Topics Widgetand what did it show? ie what is ‘doesnโt seem to be functional’ as seen by you
In reply to: where to put bbpress.css in child-themeno problem !
In reply to: where to put bbpress.css in child-themeok so for the roles, you should see and use
loop_single_forum in your child theme is the right way to go
If you need further help in doing this (or anything else!) – please feel free to ask, like all things it is a learning curve ๐
In reply to: Replies Transparency/Opacity Issueyour blogs.css line 1427
has
.single .commentmetadata, .single .reply { left: -15px; margin: 10px 0; opacity: 0.3; position: relative; }suggest you try adding
#bbpress-forums .reply { opacity: 1; }to your css.
come back if you need further help in doing this !
In reply to: where to put bbpress.css in child-themeno, core functions in bbpress cannot be put in other folders.
Generally it is not recommended that you change bbpress itself. Rather almost all bbpress functionality can be filtered, so that the plugin remains complete and changes are put in your theme’s functions file using wordpress filering capability.
What changes did you make? If small, let me know which lines in which file, and post the changes here, and I’ll try to help you with what you should put in your functions file.
You should also make those changes (and the template files you copied ) in a child theme, so that theme updates donlt overwrite these
https://codex.bbpress.org/functions-files-and-child-themes-explained/