Published on November 13th, 2019 by ico33
1) My site is in italian, and BBpress was obviously in italian. Now some words or sentences are in english and others are in italian. A sort of mash-up (latest replies widget, and other elements). ANything to do?
2) in mobile view, the username in the replies are partially covered from the previous reply.
Published on November 13th, 2019 by Danishsard
Many pages with bbpress forums cannot use their national texts because there is no accepted translation. In the forum settings there should be assumptions where you can enter the forum entries yourself, for example: new topic, reply, newest, etc.
Also, there should be an option to pay out these beams with a description of how many votes are on a given topic (WHO’S WHOM FOR WHOM), and how many posts are in the topic and who last gave, it should also be to choose whether you want to see it.
My site in Polish but is displayed in large numbers in English language because there is no transaction that awaits for years to be approved https://infomiasto.eu/forum/tematy/rozmowy/ so you would write the right words yourself.
Published on November 13th, 2019 by pdvwp
WordPress: 5.3
bbPress: 2.6.0
Brand new to WordPress. Building a site using Genesis Framework (NewsPro Theme) @ WPEngine.
I just installed the two updates to WP 5.3 and bbP 2.6.0, but now I’m getting this error when I try to publish a post:
“Publishing failed. Error message: Sorry, you are not allowed to edit the _bbp_topic_count custom field.”
Published on November 13th, 2019 by Clivesmith
Hi,
Just updated and I am not showing any forums, I have reverted to last version and all well again. will try to look into it and report back but suggest everyone make sure they have backed up before upgrading.
Published on November 13th, 2019 by Oxibug
Hi There!
For guys whom using action hook {bbp_forum_metabox}, It was uses ($post_id) and since v2.6.0 they modify the variable into WP_Post object so if you use {$post_id} to get your custom meta values it won’t work and you must modify it to {$post->ID} instead of {$post_id}.
I extremely recommended to make two functions using {version_compare} with bbp_get_version() to solve this.
if( version_compare( bbp_get_version(), '2.6.0', '<' ) ) {
// Use $post_id
add_action( 'bbp_forum_metabox', array( $this, 'bbp_forum_metabox' ) );
}
else {
// Use $post->ID
add_action( 'bbp_forum_metabox', array( $this, 'bbp_forum_metabox_GTv260' ) );
}
Published on November 13th, 2019 by pipipi07
Thank you for making it 2.6!
However, there was a problem after the update.
I use bbpress in Japanese.
In ver.2.5, a code that sets the topic title to 20 characters in Japanese was added to functions.php and it worked properly.
This is the code.
function title_max_length ($ default) {
$ default = 20;
return $ default;
}
add_filter ('bbp_get_title_max_length', 'title_max_length');
But after 2.6, it didn’t work.
For example, if default = 20, only 6 characters will be reflected in the title in Japanese. If it is half-width alphanumeric characters, up to 20 characters are correctly reflected.
I know this is a multibyte issue, but I don’t know how to deal with it. Can I change the limit on the number of characters in a title even with multibyte?
I hope to find a good solution.
I am not good at English. I’m sorry in terrible English. thank you for reading!
Published on November 13th, 2019 by kent25
the new update really looks dope (aka nice) with the separators for each topics, but it really needs work on
1. its having issues with bubbypress, because when a member login its shows a blank page both for the home and bubbypress profile.
i thought it was from my theme until i uninstall BBpress.
2. this is just my suggestion…. topics should remain at its position, when a new reply is made.
e.g: when a member reply to an old topic, it goes back to the top of the recent topics,made… this should be looked into
Published on November 13th, 2019 by anthonious
Hello,
I use a combination of bbpress and buddypress (5.0) on my site. Buddypress notifications do not work properly since bbpress to 2.6.
When I originally clicked the notification, it redirected me to the topic / response and marked the notification as read. It’s not happening now. The notification remains unread.
I have tried on a clean installation of Worpdress, bbpress and buddypress without all the other add-ons, but it still doesn’t work.
What is wrong?
Anthonious
PS: Excuse my english, Im not native 🙂
Published on November 12th, 2019 by sbmar
Is there a reason that I cannot get the main CSS file (bbPress) in my child theme is not being read any longer? It is only looking for the bbpress.min.css file now?
Published on November 12th, 2019 by randrcomputers
Just wondering if this breaks any notifications i have setup in 2.5 for subscriptions? I have ran 2.6rc7 on dev site for months but now id like to give it a go on live site! Very excited to try it and hope it improves performance a bit too. Thanks for finally getting official release done.