Forum Replies Created
-
In reply to: CSS plugin? To change BBpress font and size?
use my style pack plugin that will let you change lots of things
In reply to: Imported topics don’t connect to forumsmay not work, but try
dashboard>tools>forums>repair forums
Could be theme or plugin affecting this
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
In reply to: How many users online?bbpress just uses wordpress login, so you can display the number of wordpress users online
eg
http://www.wpbeginner.com/plugins/how-to-show-real-time-online-users-in-wordpress/
but as to how many are in a forum, I don’t know of anything that would be clever enough to do that
In reply to: Maximum number of subforums? (displayed)ok, thanks for the updates
In reply to: Change Editor DisplayGreat – thanks for that !
In reply to: Maximum number of subforums? (displayed)sorry – I was half awake this morning
try
add_filter ('bbp_before_has_forums_parse_args', 'rew_show_all' ) ; function rew_show_all ($args) { $args['posts_per_page'] = -1 ; return $args ; }
great – thanks for the update
In reply to: Change Editor Displaygreat – thanks for updating us.
It would help others searching later and finding this topic to post your solution – thanks
In reply to: Maximum number of subforums? (displayed)the code only shows 50
put this in your functions file (untested, but should work)
add_filter ('bbp_before_has_forums_parse_arguments', 'rew_show_all' ) : function rew_show_all ($args) { $args['posts_per_page'] = -1 ; return $args ; }
In reply to: Multiple Forum IndexesIf I understand what you want correctly, just set each ‘page’/index as a category and then the appropriate forums as belonging to that category.
Then set up a page for each and use a shortcodes to display the appropriate forums for that page
eg
[bbp-single-forum id=1]
[bbp-single-forum id=2]
[bbp-single-forum id=3]I’d suggest you try a few repairs
dashboard>tools>forums>repair and run one at a time
In reply to: Request: Restrict Topic Creation by Rolethis is doable, but you’ll need to modify the role
see
and
you’ll probably want to create a new role which just lets this role create and edit replies
In reply to: Especially urgent need helppresume you have posted this in the buddypress support forum?
In reply to: IimprovementsIn reply to: PHP Versionyes any 1 of these will fix
no problem !!
In reply to: PHP Versionsorry it’s
/includes/forums/functions.php
have amended the instructions above !!
In reply to: PHP Versionnext version of bbpress will fix this, but in the meantime
3 different fixes – either
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6 RC
3. in bbpress 2.5.12 go to /includes/forums/functions.php and change line 1851 from
$meta_query = $posts_query->get( ‘meta_query’ );
to
$meta_query = $posts_query->get( ‘meta_query’, array() );
Since the next upgrade will fix that anyway, no issue in changing the bbpress file
best I can offer I’m afraidIn reply to: I want to integrate bbPress with existing themeIn reply to: Multisitesounds like a whole project, and way beyond a few lines of code.
In reply to: MultisiteSwapping where it goes to is easy if it were just one address eg all profiles go to http://www.thisite.com
Otherwise you will either need a formula or an entry in a database which this accesses.
Come back with what ‘the person’s subsite’ is.
In reply to: Using bbpress mods can’t access private forumsand words from the plugin author on moderators in 2.6
In bbPress 2.6, per-forum moderators will work like this:
* Users with the global Moderator role will be able to moderate all forums
* Users assigned as a moderator to a specific forum will act like a moderator in that forum
* This includes private & hidden forums, where the non-moderator (Participant role) user wouldn’t otherwise even be able to see them at all
There are weird situations that could come up, but you’d have to be working backwards in both directions to see them. For example, giving someone the “Blocked” user role, but then trying to make them a moderator in a forum, is weird. In these cases, the block wins.In reply to: Using bbpress mods can’t access private forumsok, per forum moderation is something that is 2.6.
Suggest you download the release candidate 3 and try again to see if this is a bug that has been fixed