Forum Replies Created
-
In reply to: Error message when any user posts
no problem, hopefully I was some help !
In reply to: Error message when any user postsok, I think you are now beyond the general help I can give.
In reply to: Error message when any user postsok try putting it into
dashboard>settings>bbp style Pack>custom css
In reply to: Multiple Forumsok, not possible without bespoke development work
In reply to: Multiple Forums‘One is for regular forum-use, and the other is for writing texts where people can comment and start discussions. So it’s two different features but for all members.’
sorry you have now completely lost me – I do not understand the difference between ‘regular use’ and ‘can comment and start discussions’ – forums are where you start discussions and comment !
I am trying to help you, but perhaps you could start from scratch and articulate exactly what you are trying to achieve.
In reply to: Multiple Forumsyou should find this plugin will do that
https://wordpress.org/plugins/bbp-private-groups/
within the plugin set your users into two private groups, and allocate a forum/forums to each group.
Users will then be able to see and interact with only their forums inc. search.
In reply to: Multiple Forumsdepends
if you are just talking about having two forums, then if you want you use shortcodes
single forum [bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
and have
page 1
[bbp-single-forum id=32]
Page 2
[bbp-single-forum id=35]
In reply to: Error message when any user postsOw!! Sorry – believe it or not, that is the first time anyone has tried that !!
I’ve coded a fix for the next release that will stop that happening in future.
Can you tell me where you are adding those snippets? I’m more dubious on the first, but the second should work.
In reply to: Error message when any user postsok, I think the first is your theme, but try adding this to the custom css
#bbpress-forums p.bbp-topic-content, #bbpress-forums p.bbp-reply-content { color: #1e73be !important; }
and also add this for the Reply to :
.entry-content fieldset legend { color: #fff !important; }
In reply to: Error message when any user postsI didn’t realise you were trying to do so much
suggest you download my plugin
https://wordpress.org/support/plugin/bbp-style-pack
and then come back if you still have stuff needed.
In reply to: Error message when any user postsI wasn’t aware that it was causing issues, but it came up when I googled your symptoms !
Glad you like the styling crib – I wrote most of it !
In reply to: Error message when any user postsare you using the plugin
In reply to: Forums linked to Sensei Coursesyou will need my plugin
In reply to: how to customize bbpress forumThere are also quite a few plugins that customise bbpress
eg
https://wordpress.org/plugins/bbp-style-pack/
https://en-gb.wordpress.org/plugins/bbp-toolkit/In reply to: including text under forum titleTo add a description (it will be under the breadcrumbs) use my style plugin
https://wordpress.org/plugins/bbp-style-pack/
and go to
dashboard>settings>forum display and set item 6
to eliminate the blue box out this in your css
div.bbp-template-notice.info {
display: none;
}but I’ll add this to the next version of style pack which is due out very shortly
In reply to: Add custom tab to profile pageok, I’ve spent several annoying hours trying to work out how to do this, and failed miserably!!
I expect the answer is just a few brief lines of code, and linked to the way bbpress handles both templates and wp-rewrite, but can’t fathom it out in the files
Sorry, but I am having to give up !
In reply to: Add custom tab to profile pageArguing with those trying to help you is probably not the best way forward.
How to do a link is easily googled, but I’ve put one in here that you can add to the template
<li> <span class="vcard bbp-user-profile-link"> <a class="url fn n" href="www.mysite.com/read-this" title="read this">Read this</a> </span> </li>
In reply to: Add custom tab to profile pagethat depends.
Can you outline exactly what you are aiming for eg I want a picture of fred to appear when they click a link saying ‘fred’
In reply to: Add custom tab to profile page@deeve007 – it’s doable, but you’ll need to do some coding.
The key file you want is
wp-content/plugins/bbpress/templates/default/bbpress/user-details.php
so
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/user-details.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/user-details.phpbbPress will now use this template instead of the original
and you can amend thisyou’ll see the tabs in this file.
Do come back with what you are trying to do if you need further help
In reply to: Deactivated plugin, broke my blogNo problem – glad you’re fixed !
In reply to: Installed bbPress can’t find forum on WordPress siteless shouty with the title, and a little bit of patience would be great !
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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
You may need to juggle a bit, but my Private Groups plugin filters forums for specific groups
so a user belongs to a group or groups
Forums belong to a group or groupsusers can see forums of the same group or groups.
https://wordpress.org/plugins/bbp-private-groups/
Post a topic on that plugins support desk if you need coding help
In reply to: Adding New Role Mess The Sitesorry the code is/was untested.
Try this with a correction
function add_custom_role( $bbp_roles ) { $bbp_roles['my_custom_role1'] = array( 'name' => 'vip', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
In reply to: Adding New Role Mess The Siteif tyoun just want a role called VIP with participant capabilities, then undo whatever you did above, and then put this in your functions file
function add_custom_role( $bbp_roles ) { $bbp_roles[''my_custom_role1'] = array( 'name' => 'vip', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
In reply to: Single Login for Member Area & BB forumBbpress uses the wordpress login, so they will have single signon.