Hi @usestrict
Thanks for this.
I confirm it fixed it.
However, this plugin seriously need updates. There are A LOT of others major issues, making the plugin no more compatible with actual version of bbPress.
For instance :
– https://www.ads-software.com/support/topic/uncaught-typeerror-cannot-read-property-speak-of-undefined/ (check and apply this)
– Frontend dropdown no more working because admin ajax url is missing in plugins\buddy-bbpress-support-topic\includes\functions.php
wp_localize_script( 'bpbbpst-topic-js', 'bpbbpstbbp_vars', array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'securitycheck' => __( 'Security check failed', 'buddy-bbpress-support-topic' ),
'supportStatus' => wp_list_pluck( bpbbpst_get_support_status(), 'prefix-title', 'value' ),
'loading' => __( 'loading', 'buddy-bbpress-support-topic' ),
'statusChangeSuccess' => __( 'Topic status successfully changed.', 'buddy-bbpress-support-topic' ),
'statusChangeError' => __( 'An error occurred when changing the status.', 'buddy-bbpress-support-topic' )
) );
– Metaboxes are not showing up anymore in forums topic edit screen.
Check plugins\buddy-bbpress-support-topic\includes\admin.php
, line 60.
add_action( 'bbp_forum_attributes_metabox', array( $this, 'forum_meta_box_register' ), 10 );
This won’t work because bbp_forum_attributes_metabox
is an unknown action from bbPress. They probably changed the way they handle metaboxes.
This line needs to be replaced by add_action('add_meta_boxes', array( $this, 'forum_meta_box_register'), 10, 1);
Well. This plugin is completely down ?? ?? ?? But obviously, if you apply all my fixes, it should work back to normal.
Regards.
-
This reply was modified 5 years, 1 month ago by
Thomas.
-
This reply was modified 5 years, 1 month ago by
Thomas.