Forum Replies Created
-
it is a bug in current version, the authors are aware
this temporary fix works for many
In reply to: New user registration failbbpress just uses WordPress login, so the issue is there.
wordpess doesn’t gave this feature in native mode, so I suspect you have another password/login related plugin that is causing the issue
In reply to: User Statistics🙂
In reply to: User Statisticsif you can find someone who is willing to clone the plugin, learn how to upload, maintain and then answer the support forum questions for free, then no reason why it should not be made live again.
In reply to: User Statisticsthat should do it
In reply to: User Statisticsadd an additional if statement
if ( is_bbpress() && ! current_user_can( 'spectate' ) )
if they can’t spectate then they are blocked
In reply to: User Statisticssince the plugin is not being maintained, suggest you just edit that file to take out the comment out !!
so change
//if (is_user_logged_in()) { foreach( $data as $key => $html ) { $HTMLOutput .= "<div class='bbpas-" . $key . "' id='bbpas-" . $key . "'>" . $html . "</div>"; } //}
to
if (is_user_logged_in()) { foreach( $data as $key => $html ) { $HTMLOutput .= "<div class='bbpas-" . $key . "' id='bbpas-" . $key . "'>" . $html . "</div>"; } }
In reply to: Making a Specific Forum Moderatednone I know for a specific forum
In reply to: User StatisticsThe drawback with the user statistics plugin is that if a user is not logged in they can see the usernames of all logged in people for last 24 hours.
are you sure that this is not a ‘caching’ problem? either on server or your pc ?
does it just disappear after 24 hours and exactly 24 hours?
In reply to: New user registration failthis forum is for free support for free software, support is offered free by volunteers, and you posted your question on a weekend.
In reply to: Topics Not Showing on Forumgreat – thanks for letting us know
no idea why it isn’t working for you on the back end – works fine on my test site
tried backend and frontend?
In reply to: subscribe to individual topicsif you have subscriptions set in
dashboard>settings>forums
then this should show.
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
I suspect that another plugin or your theme is causing this.
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: How to hide forums from moderators?I think this is what you need
In reply to: Topics are not shown in forum overviewgreat – pleased your are fixed
In reply to: Topics are not shown in forum overviewok, thanks, got it
my style pack lets you put then topic title in the last column
once activated go to
dashboard>settings>bbp style pack>Freshness Display
In reply to: when bbpress is enabled, all pages will disappeargreat – glad you are fixed
In reply to: when bbpress is enabled, all pages will disappeartry
dashboard>settings>permalinks and click save – this resets them
In reply to: Character Counttry >500 not <500
In reply to: Character CountI don’t know how technical you are, this one does the opposite
function rew_min_length ($reply_content) { if (strlen($reply_content)<61) { bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be at least 60 characters.', 'bbpress' ) ); } return $reply_content ; } add_filter( 'bbp_new_reply_pre_content', 'rew_min_length' );
I mean it would require someone writing some code
the includes/forum/template.php has a function called bbp_get_forum_class which adds classes, but as far as I can see it is never used.
bbp_list_forums in the same template has
// Subforum classes $subforum_classes = array( 'bbp-forum-link' ); $subforum_classes = apply_filters( 'bbp_list_forums_subforum_classes', $subforum_classes, $sub_forum->ID ); // This could use bbp_get_forum_class() eventually... $subforum_classes_attr = 'class="' . implode( ' ', array_map( 'sanitize_html_class', $subforum_classes ) ) . '"';
so looks like this is a plan?
anyway you could use the line listed above
$subforum_classes = apply_filters( 'bbp_list_forums_subforum_classes', $subforum_classes, $sub_forum->ID );
to add a call to that function
sorry that’s then best I can do
In reply to: 404 after updatetry
dashboard>settings>permalinks and simply press save – this resets the links and might fix