Forum Replies Created
-
In reply to: “Replies Created” & “Topics Started” 404 URL Error
@hardel The fixes that were recommended in the ticket you linked to are pretty-much identical to what is now in 2.6.14.
If that worked for you then, 2.6.14 should work now, but only as long as you aren’t still running the old temporary fix code at the same time.
(I’ve tested a few different ways & installs, and the latest BuddyPress & bbPress are working together as intended for me.)
The URLs being generated are different from what I originally posted four years ago.
They both still look the same to my eyes, but I will believe you 🤣
In reply to: Permalinks in replies lead to the wrong pageVisit: Admin > Tools > Forums > Repair Forums
Try running the 6th tool from the top:
“Recalculate position of each reply in each topic”
This may take a while, but is intended to fix pagination issues like this.
In reply to: “Replies Created” & “Topics Started” 404 URL ErrorHi @hardel 👋
I’ll take another look at this.
Is it possible you may have a work-around activated as a plugin that might be interfering, now that bbPress 2.6.14 includes its own fix?
This is also fixed directly in bbPress 2.6.14
In reply to: wordpress 6.8 and bbpress bug?A new version of bbPress will be released shortly that includes the above fix.
Sorry, and thanks for understanding!
In reply to: Release Notes for 2.6.12Can you provide any insight into the status of 2.7.0 Alpha? I’m assuming that, if I knew how, I could at least query Trac to find out which bugs are attached (if that’s the right term) to that release, and so on
There are a few ways, but I usually use the Roadmap.
See: https://bbpress.trac.wordpress.org/roadmap
You’ll see the various releases as headings there, and you can click around to get the various ticket reports.
It’s all pretty fluid though. For example, the 2.6.12 release wasn’t really planned, so the minor issues got bumped to 2.6.13, and if a new security release needs to happen quickly, they’ll get bumped again, etc…
I appreciate the kind words. I love bbPress, and I do hope to be able to put a lot more time towards it again!
In reply to: When Support Block Theme?There is a pull request (on GitHub) to bring support for this into bbPress, and I hope to review it soon!
In reply to: Release Notes for 2.6.12👋 Hi there!
It’s mostly still me working on bbPress, with bug reports & help here and there from the community which are always helpful and appreciated!
I simply forgot to update the Codex page, so thank you for asking here 😅
The build & release process is still pretty manual, because it includes updates to multiple WordPress pages & such (as you’ve all noticed here).
(I do read the forums almost every day, and think they work best when I stay out of them and the community helps itself & each other – and moderators like @robin-w are obviously especially helpful.)
No apology necessary!
I think it’s good to post this here, in case it’s related to the most recent bbPress release.
There was a change related to Roles triggering PHP errors with certain plugins active, so it’s plausible that fix broke something else.
Which plugin were you using to make your new roles?
In reply to: BBPRESS 2.6.10!Blog post for 2.6.11 is up!
In reply to: bbPress 2.6.10 – All pages return 404 errorsIf anyone out there needs to quickly do an emergency fix to their live site before updating to 2.6.11, here are the changed lines of code between 2.6.10 and 2.6.11:
https://bbpress.trac.wordpress.org/changeset/7272
I’m not advocating for hacking on weird files on live sites, but I understand everyone’s situations are different, and thought maybe this could be helpful to see.
In reply to: bbPress 2.6.10 – All pages return 404 errorsYou’re welcome, Eusebiu. Really sorry about today!
In reply to: bbPress 2.6.10 – All pages return 404 errors2.6.11 is out!
Blog post imminent.
Changelog code page updated.
Sorry everyone 😔
In reply to: bbPress 2.6.10 – All pages return 404 errors2.6.11 will be out later today to fix this.
In reply to: Strip embeds like youtube and image tagsMost embeds can be disabled via the “Auto-embed links” setting in:
Admin > Settings > Forums
You can also permanently unhook them:
remove_action( 'bbp_init', 'bbp_reply_content_autoembed', 8 ); remove_action( 'bbp_init', 'bbp_topic_content_autoembed', 8 );
Images are a bit trickier, as you’ll need to remove
img
from the allowed-tags array:add_filter( 'bbp_kses_allowed_tags', function( $tags = array() ) { unset( $tags['img'] ); return $tags; } );
In reply to: Remove visual editor only allow code editorbbPress includes a function called
bbp_make_clickable
that is used to turn regular URLs in topic and reply contents into anchors.You would need to unhook it to prevent it from happening.
remove_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 40 ); remove_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 40 );
In reply to: Is this bbPress or buddyPress?In reply to: Post Not Being Fully PublishedSounds weird. Link to your forums where it’s happening?
In reply to: HTML editor doesn’t appear on bbpress 2.6.7bbPress 2.6.9 was just released, but it does not make changes to this yet.
I needed to rush out an Akismet fix first, and I’ll look more into this next.
Thank you for being patient. Sorry for the wait. 🙏
Hello! Your second URL is correctly showing 0 topics, at least.
I’m not entirely certain anymore if incorrect BuddyPress Group sub-pages will 404.
In reply to: HTML editor doesn’t appear on bbpress 2.6.7@robin-w 👍👍👍
In reply to: HTML editor doesn’t appear on bbpress 2.6.7@robin-w – any suggestions on improvements bbPress should make?
I was thinking of renaming
no-js
tobbp-no-js
to try and avoid an issue with other plugins or themes already doing something with that class, but I’m not sure that solves this specific problem.In reply to: bbp user ranking conflict with Divi?That last one is simply a deprecation notice. It will not break anything.
In reply to: Topic or forum (un)subscription hookThere is also…
do_action( 'bbp_add_user_subscription', $user_id, $object_id, $type );
…and…
do_action( 'bbp_remove_user_subscription', $user_id, $object_id, $type );
…if you need something a bit more lower-level, that isn’t tied directly to the request handler.
In reply to: HTML editor doesn’t appear on bbpress 2.6.7Can you please post the code snippet you are using to enable the visual editor?
In my testing, it is working OK using these snippets: