Forum Replies Created
-
In reply to: Topics/Replies of Private Forum Showing in Sidebar
may be a conflict between the Exchange Membership plugin and mine.
Try deactivating the exchange plugin as a test and see if that fixes. That would confirm a conflict or not
In reply to: Trying to make forum full width@robkk – I was hoping you might join in here, you css is so much better than mine !!!
In reply to: Trying to make forum full widthtry just
.content-area {
width: 150% !important;
}but that might muck up other areas of the site
That looks suspiciously like the problem and the solution! and as it’s recent it’s not in the core.
I’d suggest you change the core and see if it works.
If it does, then make a note, and check on the next update that it’s been incorporated.
Changing the core of a plugin is only a problem because it will probably be overwritten on next upgrade. You could write a couple of filters (the capability is there) if you’re worried about changing core.
In reply to: Trying to make forum full widthok, in your theme css add this at the bottom
#bbpress-forums .content-area {
width: 150% !important;
}My css is lousy, so if this doesn’t work, come back !
My role no longer displayed as ‘villager’ but instead switched back to ‘participant’, and the ‘trash’ links were never present
That’ll be because the code you’ve changed is in the functions file of your theme?!, so goes when you switch to a another theme.
Ok, no don’t bother – I was not really expecting it to change anything, just wanted to eliminate before jumping into lots of code, but since it will be a hassle, we’ll leave that for the moment and I’ve now looked at the raw code !!
ok, the template it is using is loop-single-reply which then callsbbp_reply_admin_links . this then checks whether it is a topic or reply and for a reply continues and then calls each of the elements in turn
so for trash it calls
bbp_get_reply_trash_link and checks that the user can ‘delete_reply’ before posting that link.
For a topic it jumps to
bbp_get_topic_admin_links and checks that the user can ‘delete_topic’ before posting that link.
NOW I guessing (and probably wrongly, but am short of time tonight so will get you to do more work!) that the codex or this function might be wrong and you should be giving a delete_topic singular rather than delete_topics so give that go.
If that works (and I’ll be very surprise if it does!), then you’ll need the filter much earlier to prevent permanent deletion.
Otherwise I’ll take another look tomorrow !
In reply to: Trying to make forum full widthsorry it didn’t like that login
can you humour me and try
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 twentytwelve, and see if this fixes.
great – good to know that the good old “start again” technique still works 🙂 That’s computers for you !
If you are using the shortcode
[bbp-forum-index]
on a page, then the template that page is using can be called but sub pages will use bbpress.php
See if that is your issue
In reply to: Topics/Replies of Private Forum Showing in Sidebaryou need my plugin
https://wordpress.org/plugins/bbp-private-groups/
membership plugins on their own do not protect from widgets and searches.
In reply to: Separate forums?Sorry, need a screenshot to understand 🙂
In reply to: Trying to make forum full widthcan you post some links please so that we can see the problem
In reply to: Trying to make forum full widthmy twentyfourteen theme doesn’t have a full-width.php.
Suggest you make a copy of page.php – rename it bbpress.php
then remove
get_sidebar();
near the end
and save it and let us know if that works
In reply to: Trying to make forum full widthare you using the twentyfourteen theme?
no problem – glad you’re fixed !
In reply to: help…bbpress button thanksquite codeable, but don’t know of any existing code to do this
In reply to: Adding a topic?great glad you’re fixed
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 twentytwelve, and see if this fixes.
In reply to: Blank Members Page – What's going on?a /members page is not part of bbpress. Might be buddypress or because you have set a page up, but not default bbpress
simplest solution without me documenting alternatives would be to create bbpress roles with the same names as you member ones
see https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#14-adding-new-bbpress-roles
so you’d create a bbpress role called new member and give it the same capabilities as participant
In reply to: Separate forums?Meanwhile, however, can I list only one forum at a time?
see earlier answer – ‘[bbp-single-forum id=123]‘
at the end the pages that appear after the user clicks a top menu called “Chevrolet.”
see earlier answer – ‘Then create a wordpress page called say GM, and put the shortcode’
you can put as much text on that page before the shortcode as you like
“See other forums,”
just use a hyperlink to a page with the shortcode [bbp-forum-index]
In reply to: Adding a topic?did you submit some content?
was this in the backend (dashboard) or front end
Try
Forum/Topic headings
#bbpress-forums ul.forum-titles { font-size: 16px; }
Topic/reply text
#bbpress-forums .bbp-topic-content p, #bbpress-forums .bbp-reply-content p { font-size: 16px; }