- This topic has 9 replies, 4 voices, and was last updated 1 year, 1 month ago by
MillaN.
- This topic has Question prefix assigned
Tags: moderation
In the past several days, users have entered forum content, but 2 of 4 entries is locked in “Pending Moderation”, leading to a 404 error for those posts. Can someone tell me where to either approve moderation or how to delete the forum entries so others don’t dead end on them
Thank you
Jeff
Topic Information
-
MillaN
Keymaster -
Jason Higdon
ParticipantJanuary 13, 2020 at 6:08 pm #62718MillaN, we are having this same issue after processing a bbPress update last week and then we updated your plugin as well.
The topics that end up being marked “Pending” are normally posts that use the “Quote” feature. All other posts seem to go through as published.
We think this may be causing an issue with the blue arrow “Most recent reply” button because it generally takes the user back to just the beginning of the thread. We’re guessing that since some topics are showing “Pending” it is messing up the tracking somehow?
Any suggestions would be appreciated. Thanks! Dale
-
MillaN
Keymaster -
Tim Topham
ParticipantMarch 12, 2020 at 5:30 pm #62933Hello I have the same problem, in the last week or so, many users are experiencing their topics and replies are not being posted and are saved as pending moderation. They do not get notified so it looks like the forum is broken.
Took a while to figure out that every time the post is put under moderation when using the “quote” feature from the GD Bbpress Tools Pro plug-in.
I added code to allow the blockquote HTML tag explicitly using the following code, but I still have the issue.
I have the latest WP, Bbpress and GD Bbpress plugin installed, and the visual editor is enabled.How do I solve this?
Thanks in advance for your help!
Tim// Allow more html tags in bbpress for participants function tim_kses_allowed_tags($input){ return array_merge( $input, array( // paragraphs 'p' => array( 'style' => array() ), 'span' => array( 'style' => array() ), // Links 'a' => array( 'href' => array(), 'title' => array(), 'rel' => array() ), // Quotes 'blockquote' => array( 'cite' => array() ), 'div' => array( 'class' => array() ), // Code 'code' => array(), 'pre' => array(), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ) )); } add_filter( 'bbp_kses_allowed_tags', 'tim_kses_allowed_tags', 999, 1 );
-
MillaN
KeymasterMarch 12, 2020 at 5:46 pm #62934Hi,
My plugin already has option to allow the extended list of tags and attributes, so your code is not needed, just enable the option in plugin Settings -> Various Tweaks -> Expand KSES allowed HTML tags and attributes -> Allowed tags list.
As for the moderation issue, no one else reported a similar issue so far. But, bbPress 2.6 introduced a lot of changes to moderation, and it is possible that something related to the quote is causing it. I will run some additional testing to see how the quote affects the moderation and let you know soon.
Milan
Dev4Press - Premium plugins for WordPress.
-
Tim Topham
ParticipantMarch 12, 2020 at 7:04 pm #62935Thanks MillaN!
I’ll remove the code and enable your plugin functionality. I found out that the combination between your plug-in and Bbp style pack plugin caused the issue. I disabled that plug-in and now everything works fine! -
Tim Topham
ParticipantMarch 12, 2020 at 7:20 pm #62936Thanks MillaN!
I’ll remove the code and enable your plugin functionality. I found out that the combination between your plug-in and Bbp style pack plugin caused the issue. I disabled that plug-in and now everything works fine!Spoke too soon. It worked once now it’s not working again.
Can you point me to some documentation regarding the 2.6 changes so I can better understand what’s going on? -
Tim Topham
ParticipantMarch 12, 2020 at 7:33 pm #62937OK, found the issue, same as described here:
https://bbpress.org/forums/topic/disable-pending-status-to-allow-all-content/ -
MillaN
KeymasterMarch 14, 2020 at 11:15 am #62939It looks like the quote is not the problem, but what is inside the quote. bbPress moderation uses some of the WordPress comments settings to control moderation, and in general, bbPress lacks fine control options to improve how auto-moderation works.
I will continue testing, and I plan to add options to GD bbPress Toolbox Pro to control the auto-moderation process. Depending on the work that needs to be done, it will be added in 5.9 or 6.0 versions of the plugin.
Milan
Dev4Press - Premium plugins for WordPress.
- The topic ‘Topics pending moderation’ is closed to new replies.