Forum Replies Created
-
In reply to: BBPress Notifications not Clearing Up
@nikbond thanks, I don’t use buddypress, so have little experience of it, so any help you can provide would be great
In reply to: BBPress Notifications not Clearing Up1. which version of bbpress
2. what do you mean by notifications? – that is not a bbress phrase, do you mean notify on the topic/reply form?
3. so in addition to bbpress what other bbpress related plugins are you using ?In reply to: Allowing only the Forum creator to add the Topic??not really
In reply to: Headings in forum are to longgreat – glad you are fixed
In reply to: Allowing only the Forum creator to add the Topic??ok, so you could use
then when you set up each forum ‘I put the Forum creating shortcode on a page.’ you could also set up a group for the forum, add the creator as a member and give him permission to create topics.
It is a but labor intensive, but would work.
How many forums are you planning ?
In reply to: Headings in forum are to longok, try this instead
#bbpress-forums ul.forum-titles li.bbp-forum-info { font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-topic-count{ font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-reply-count{ font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-freshness{ font-size: 10px !important ; }
In reply to: Allowing only the Forum creator to add the Topic??how are they creating the forum? eg buddypress, they are admins or how ?
In reply to: Can anyone help me with this E_ERRORno, that probably wasn’t the problem, if you had been on version 5.x then that might be the issue.
If php version doesn’t fix then it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, 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.
Then come back
In reply to: Headings in forum are to longtry
.bbp-header { font-size : 10px ; }
In reply to: Topics are not shown in forum overviewIf you could explain further what you are expecting to see – maybe with a mock-up then I’ll take another look
In reply to: sub topics not showing@haddly great, glad you are fixed !!
In reply to: sub topics not showingdo you have the bbp toolkit plugin active ?
The best I can suggest is
If you want better than this, then contact the developer https://www.dev4press.com/ Milan does bespoke development as well
In reply to: sub topics not showingthat’s interesting – no idea why that happens !!
In reply to: sub topics not showing@hydrogriff – ok, not sure that I ma goung to be able to help much further.
I can only suggest it could be a theme or plugin issueThemes
As a test switch to a default theme such as twentyfifteen, 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.
Then come back
In reply to: Can anyone help me with this E_ERRORwhat version of php are you running ?
In reply to: Wrong user in freshness🙂
In reply to: Wrong user in freshnessGiven that the authors are looking at this, I’m not currently investing time in it 🙂
In reply to: Wrong user in freshnessglitch in present version for some people – authors are aware
this helps many
In reply to: Topics are not shown in forum overviewunless I am not understanding you, every other forum I have seen does what bbpress does
In reply to: Topics are not shown in forum overviewok it is showing what I would expect.
topics are shown only when you go into each forum which is standard bbpress behavior.
If you would like all the forums listed with titles, then create a WordPress page for your firums and put a list of forums in it as shortcode
[bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
so for instance out this on a page
[bbp-single-forum id=32]
[bbp-single-forum id=33]
[bbp-single-forum id=34].
In reply to: How can I change the title of the main forum?this is theme specific issue, so could be many things.
you could try
item 3 method 2, that might force your theme to use a page name
In reply to: Edit the bbPress login widgetGreat – glad you are fixed
In reply to: sub topics not showingand this one tends to suggest that your theme or anther plugin is doing stuff with the replies side of bbpress
//Lead Topic Enable function custom_bbp_show_lead_topic( $show_lead ) { $show_lead[] = 'true'; return $show_lead; } add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );