Forum Replies Created
-
In reply to: Date of next update?
I am just a moderator here, and not a bbpress author.
The authors tend to release updates every few years, rather than more frequently.
My personal view is that you should consider bbpress to be a ‘mature’ product, ie any releases will be to fix issues rather than add functionality.
bbpress is written really well, and has loads of hooks. In essence it is a WordPress product, written by the founder of Wordress, and taken into a plugin by sponsorship from WordPress. There are no show stopper bugs in it, it may throw a few deprecation notices (and these are very few at the moment), but WordPress recommends that you should not show error messages in live sites.
I currently have my test site running WordPress 6.4.x and php 8.2 with no issues.
The only major issue with bbpress at the moment is that it does not work well with FSE themes.
However my bbp style pack plugin has fixes for this
as well as block versions of the widgets and a ton of styling and functionality add-ons.
All plugins are subject to the authors commitment, and bbpress is no different.
The main WordPress support forums use bbpress, and it would be mega work to move those over to some other product.
I am guessing that you are being told by Wordfence, which is telling you based on the fact that the plugin has not been updated, rather than any actual security risk.
But with open software you make your choices….
🙂 glad to have helped
In reply to: Ultimate Member/bbPress – 404 redirect🙂
In reply to: Replay not working on adminhas it never worked, or has it stopped working?
In reply to: Pagination Not Working on Any Forum Pagewhat is set in
dashboard>setting>forums>Topics and Replies Per Page
for topics and replies
sorry, been a bit tied up – I’ll get back to this shortly
In reply to: Ultimate Member/bbPress – 404 redirectIf you update to 5.9.1, then in
Dashboard>settings>forums under the moderation section you can set up so that the link goes via a login if they are not logged in. If ultimate member allows login redirect, then this should work via a login page. If not you can either use wp-login (since these are moderators they should be fine seeing this) or set up a bbpress login page.
you would need to add this to your additional/custom css
/*topic titles*/ .bbpress .forum-titles { overflow: hidden; } .bbpress .forum-titles .bbp-topic-voice-count::before, .bbpress .forum-titles .bbp-topic-reply-count::before { font: 400 16px/1 dashicons; margin-right: 100px; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; } .bbpress .forum-titles .bbp-topic-voice-count::before, .bbpress .forum-titles .bbp-topic-reply-count::before { font: 400 21px/1 dashicons; margin-left: 20px; } .bbp-topic-voice-count { display: none; } .bbpress .forum-titles .bbp-topic-voice-count::before { content: "\f307"; } .bbpress .forum-titles .bbp-topic-reply-count::before { content: "\f125"; } .bbpress li.bbp-header li.bbp-forum-info, .bbpress li.bbp-header li.bbp-topic-title { text-align: left !important; }
and then amend loop-topics.php as foillows
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-topics.phptransfer this to your pc and edit
<li class="bbp-topic-voice-count"><?php esc_html_e( 'Voices', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? esc_html_e( 'Replies', 'bbpress' ) : esc_html_e( 'Posts', 'bbpress' ); ?></li>
to
<li class="bbp-topic-voice-count"></li> <li class="bbp-topic-reply-count"></li>
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-topics.php.phpbbPress will now use this template instead of the original
In reply to: Topic posting – change input control colours?In reply to: Warning PHP statistics forumsgreat, I’ve just released 5.9.0 as well which has a further line to make sure it works (I hope!)
ok, so do you still have he same problem?
In reply to: Warning PHP statistics forumscan you confirm that you are using style pack, in which case I’ll just issue a newer version and you can forget the snippet
In reply to: Warning PHP statistics forumsadd_filter ('bbp_get_statistics', 'rew_count_forums' , 10 , 3) ; function bsp_count_forums ($statistics, $r, $args ) { //fix counts for forums to show private forums if user can read them and not error if site is only private forums // forums if ( ! empty( $r['count_forums'] ) ) { $private = bbp_get_private_status_id(); $all_forums = wp_count_posts( bbp_get_forum_post_type() ); // Published (publish) $forums['publish'] = $all_forums->publish ; $forums['private'] = 0 ; if ( current_user_can( 'read_private_forums' ) ) { // Private $forums['private'] = $all_forums->{$private} ; } //now add the two $statistics['forum_count'] = $forums['publish'] + $forums['private'] ; $statistics['forum_count_int'] = $statistics['forum_count'] ; } // Filter & return return (array) apply_filters( 'bsp_count_forums', $statistics, $r, $args ); }
In reply to: Warning PHP statistics forumsyes you can delete that
In reply to: html content restrictedit is based on a WordPress permission, not bbpress.
Users with HTML Permission will be able to use javascript to do some really horrible things to your site, so as this post says
‘This unfiltered_html permission could be very dangerous in the wrong hands, so please don’t give this permission to any users you do not trust. WordPress has disabled this permission for most users because they rarely need it.’
But also shows you how to amend if you want to.
In reply to: Topics and Replies not showing after importI’ve moved this to a fresh topic for clarity
can you confirm this is moving bbpress forums/topics/replies from one site to another using the export import within wordpress?
In reply to: Warning PHP statistics forumsI’ve also added this as a bug fix to my style pack plugin -m see bug fixes tab
In reply to: Warning PHP statistics forumscan you try
add_filter ('bbp_get_statistics', 'rew_count_forums' , 10 , 3) ; function rew_count_forums ($statistics, $r, $args ) { //fix counts for forums to show private forums if user can read them and not error if site is only private forums // forums if ( ! empty( $r['count_forums'] ) ) { $private = bbp_get_private_status_id(); $all_forums = wp_count_posts( bbp_get_forum_post_type() ); // Published (publish) $forums['publish'] = $all_forums->publish ; $forums['private'] = 0 ; if ( current_user_can( 'read_private_forums' ) ) { // Private $forums['private'] = $all_forums->{$private} ; } //now add the two $statistics['forum_count'] = $forums['publish'] + $forums['private'] ; } // Filter & return return (array) apply_filters( 'rew_count_forums', $statistics, $r, $args ); }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: no visual editor for adminok, so presume you are fixed
In reply to: Will it be updated?I am just a moderator here, and not a bbpress author.
The authors tend to release updates every few years, rather than more frequently.
My personal view is that you should consider bbpress to be a ‘mature’ product, ie any releases will be to fix issues rather than add functionality.
bbpress is written really well, and has loads of hooks. There are no show stopper bugs in it, it may throw a few deprecation notices (and these are very few at the moment), but WordPress recommends that you should not show error messages in live sites.
I currently have my test site running WordPress 6.4.x and php 8.2 with no issues.
The only major issue with bbpress at the moment is that it does not work well with FSE themes.
However my bbp style pack plugin has fixes for this
as well as block versions of the widgets and a ton of styling and functionality add-ons.
All plugins are subject to the authors commitment, and bbpress is no different.
The main WordPress support forums use bbpress, and it would be mega work to move those over to some other product.
But with open software you make your choices….
In reply to: unsubscribe link in emailsno problem 🙂
In reply to: Warning PHP statistics forumsIsn’t that what it’s supposed to do?
Honestly not a bit of code I’ve looked at in 10 years. I am presuming this is the [bbp-stats] shortcode that is doing this? and if so do you want to show this to all users, or just logged in ?
In reply to: unsubscribe link in emailsGDPR is less difficult to interpret than say the stateside ‘can-spam’ regs.
according to
‘And you must also make it easy for people to change their mind and opt-out. Only if a marketing email does not present the option to unsubscribe, is sent to someone who never signed up for it, or does not advertise a service related to one the receiver uses is it violating the GDPR.’
Can-spam is much less clear.
Having a “unsubscribe from this forum/topic” link?” should be doable, but I’d not do this for free, as it is a bunch of code I’d need to work out, as it would need to fire code from a webiste link, probably using a unique code – lots of work.