Forum Replies Created
-
In reply to: Specific Forum Topic Not Arranging
sorry, but I don’t understand exactly what you are trying to do, or whether my previous response helped or not.
Can you come back please with further detail.
In reply to: How to Integate bbPress Pages into Site Themeit depends what you mean by integration.
In essence if you create a page in your site called say ‘forums’ and put the shortcode
[bbp-forum-index]in it, then you have integrated it.Let us know beyond that what you want, and we’ll try and help further
In reply to: Installationunless wordpress.com allow it, there is no way to add plugins – sorry
In reply to: How to add users before site launchinteresting question – bbpress will add the default role you set in forums settings, so if you set this to participant this would sort the majority of users out from a forum perspective.
Which then makes this more of a wordpress question – in essence you could set up the users manually and click to not send them emails, so they would be on the live site when you transfer, but then of course they wouldn’t know their password, so it is a bit of a catch 22 !
In reply to: Forum-wide “subscribe” for ModeratorIn essence you get notified of a new topic, but you are not subscribed to that topic unless you go in and do so, so unless your mods go into each and subscribe, they don’t get subsequent replies.
This plugin automatically subscribes all users who subscibe to a forum to new topics and replies in that forum – they can of course then unsubscribe.
http://www.rewweb.co.uk/topic-subscribe/
and this one you may also find useful
In reply to: Specific Forum Topic Not Arrangingif you’ve copied/pasted it from your code, then you have a space after ‘my_custom_display_topic_index_query and before the closing ‘ bracket
ie
‘my_custom_display_topic_index_query 'when it should be
‘my_custom_display_topic_index_query'In reply to: Making a Forum ‘Member Only’Use my private groups plugin to achieve this
In reply to: How to make USERS TO MODERATORS – GROUPSThis is an issue with your membership plugin, not bbpress, the ‘manage members’ panel you show is not part of bbpress
In reply to: Member Activity ShortcodesI haven’t blocked you – I don’t have that privilege.
In reply to: Post visible to specific usersThis plugin may be what you need
In reply to: When reply it just jumps to first postbbPress 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.
In reply to: Where to find “blocked” usersgo to
Dashboard>user>all users
under
Users Add new
you’ll see the worpdress and bbpress roles listed in a single line
eg
All (1,201) | Administrator (2) | Editor (4) | Subscriber (1,050) | Keymaster (2) | Blocked (1) | Moderator (4) | Participant (1,181) | visitor (13)Click on the ‘blocked’ link and you’ll get a filter which just shows these
In reply to: How to stop Topic Creations allouw Replysok I think you need my private groups plugin which allows you to set up groups, and then give users access to different forums, and using topic permissions have different access to different forums
In reply to: Create User Levelsnot sure if this is what you are after
In reply to: How to stop Topic Creations allouw ReplysIn reply to: Search not workingno problem – glad you’re fixed !
In reply to: freshness answerssorry but you do need to say what is wrong – helpers here don’t have time to work it out !
so please state what is showing wrongly and where
In reply to: Display 5 recent topics or forums on the home pageThis plugin has a shortcode that lets you display recent topics by forum or forums
https://wordpress.org/plugins/bbp-style-pack/
see dashboard>settings>bbp style pack>shortcodes for options
In reply to: Free WordPress theme that are bbPress ready?Most wordpress themes work fine with bbpress. There are plugins such as https://en-gb.wordpress.org/plugins/bbp-toolkit/ and https://wordpress.org/plugins/bbp-style-pack/ that will help integration and add features
In reply to: freshness answersYou just include a link to your site, but with no clue as to an example.
But I suggest you run
dasbboard>tools>forums>repair forums and run one at a time
In reply to: Moderation by ForumI suspect you’ll need to pay someone to amend Ian Stanley’s plugin
From a very quick look Line 133 of the plugin would be the place to do it, as a specific fix, you could just put a check for open forum here (probably post parent) and return $data if it is one of the open ones ala line 132.
Really depends on how many open vs. moderated forums as to whether you make this inclusive or exclusive at that point.
In reply to: Search not workingThis is probably because in the bbPress default theme package, there is a template called content-search.php. In some newer themes there is also a template of the same name. And since the bbPress templates don’t necessarily need to be in a bbPress folder, the bbPress plugin is choosing the template from your theme before the template that is actually in bbPress.
Copy content-search.php from the bbPress plugin templates and place it in a child theme in a folder called bbpress.
https://bbpress.org/forums/topic/bbpress-search-only-showing-last-item/#post-175880
So create a directory on your child 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/content-search.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/content-search.php
bbPress will now use this template instead of the originalIn reply to: Adding User Profile Buttongreat – glad you’re fixed !
In reply to: Site blank when bbPress deactivatedok, I’d either
change the theme to parent briefly and try it again – see if this fixes
or try replicating to a test site, where you can play with it
https://codex.bbpress.org/getting-started/testing-your-bbpress-installation/creating-a-test-site/
In reply to: Is there any way to get forum root slug field value?the last set of code in this thread should give you what you want
https://bbpress.org/forums/topic/adding-user-profile-button/