Forum Replies Created
-
In reply to: Avatar freshness
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.
Then come back
In reply to: IimprovementsIt 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.
Then come back
In reply to: Forum link stopped workingSuspect you are using php 7.1
so 3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6beta-2
3. in bbpress 2.5.12 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: Iimprovements2) Shows the total topics, replies and total count under the avatar on each topic/reply view in bbpress
Because this plugin https://wordpress.org/plugins/bbp-topic-count/ not tested up to : WordPress 4.8is tested to 4.8 – it says so and I wrote it !!
can’t help with 1 – It should work, try it on your test site
In reply to: Iimprovementswe will need a specific question, what do you need help with?
In reply to: Problem registering new usersgreat !
In reply to: bbPress on a local servsrif you make forums ‘private’ then only logged in users can see them
sorry not in my skill set !
ok, not quite sure what is happening
1. are you using caching software? If so purge
2. try dashboard>settings>permalinks and just click save – this will reset the linksif both those fail, then 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.
Then come back
what is the slug set to?
set it to show !
suspect that you have got
dashboard>settings>forums>forum root slug>forum prefix set to not show, so it is creating a duplicate
In reply to: User Role Editing Not Workinghave you been to
In reply to: bbPress on a local servsrbbpress hates local server !
try adding this to your function file
add_filter( 'bbp_verify_nonce_request_url', 'my_bbp_verify_nonce_request_url', 999, 1 ); function my_bbp_verify_nonce_request_url( $requested_url ) { return 'http://localhost:8888' . $_SERVER['REQUEST_URI']; }In reply to: New updateok, bbpress works fine with 4.8
So can you define what you mean by ‘broken’ in ‘My newly created forum became broken with the update to WP 4.8.’
In reply to: Imported topics don’t connect to forumsgreat – glad you are fixed !!
In reply to: views and searches only loading 3 topics/repliesIt 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.
Then come back
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