Forum Replies Created
-
In reply to: Posting permissions
Sorry, no simple solution to this – would require custom coding!
In reply to: How Do I Sort the Forum Order?go into
Dashboard>forums>and edit each forum
on the right hand side you’ll see Forum Attributes which includes ‘Order’ lower numbers are earlier, so just number them 1,2,3,4 to order
In reply to: Display is Cluttered, not like Documentationcan you list which plugins you are using?
suggest you install my style pack
https://wordpress.org/plugins/bbp-style-pack/
which will let you set font sizes along with lots more
In reply to: Display is Cluttered, not like Documentationsomething is broken !
can you tell me how your page is set up?
see https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/
and which of item 3?
bbpress has no special entries, so yes this should work fine – as long as it copies the database – everything should be fine
In reply to: Error message when any user postsno 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