#3445 closed defect (bug) (fixed)
Editor buttons missing since 2.6.8 upgrade
Reported by: | n3wjack | Owned by: | johnjamesjacoby |
---|---|---|---|
Milestone: | 2.6.10 | Priority: | normal |
Severity: | major | Version: | 2.6.9 |
Component: | Appearance - Theme Compatibility | Keywords: | has-patch 2nd-opinion |
Cc: |
Description
The post editors' buttons are missing after upgrading to the 2.6.8 release.
In 2.6.6 the buttons are still visible.
As mentioned in this support thread https://bbpress.org/forums/topic/editor-buttons-missing-since-2-6-8-upgrade/, there is a workaround by editing the theme, but that's not ideal.
Attachments (1)
Change History (8)
This ticket was mentioned in Slack in #meta by otto42. View the logs.
3 years ago
#4
@
3 years ago
- Component changed from General to Appearance - Theme Compatibility
- Keywords has-patch 2nd-opinion added
- Milestone changed from Awaiting Review to 2.6.10
- Severity changed from normal to major
Thanks @dd32 and @r-a-y 👍
In addition, how about we namespace the classes, to: bbp-no-js
and bbp-js
?
That will effectively avoid conflicts with themes and other plugins that use their own no-js
class.
Patch imminent.
Introduced with #3421 / #3443, [7190] / [7220] - The no-js body class is added to all bbpress pages, but only swapped from
body.no-js
tobody.js
on the profile edit screen (...plus various other individual templates, which sites might not have copied)@johnjamesjacoby can the JS to swap it be moved from the various
form-topic.php
/form-reply.php
templates to always being output when bbPress adds the class?On WordPress.org we're using https://meta.trac.wordpress.org/changeset/11454 on
wp_body_open
for it - but that assumes that the action is present in all themes, which it isn't always, the below code chunk would work around that.