@rik,
Even with ReCaptcha 2, the current WpForo (1.9.9.1) has problems:
The feature that disables the "Add Reply" button until the Captcha graph is solved, doesn't work!You can write a very long message and absent-mindedly press "Add Reply" without having solved the captcha and the whole message will be inexorably deleted!
Users can use Revisions to save their text.
Go to \wp-content\plugins\wpforo\wpf-includes\class-revisions.php
Search`
private function init_hooks()
Â
private function init_hooks() { if( $this->options['is_preview_on'] || $this->options['is_draft_on'] ){ add_action('wpforo_editor_topic_submit_after', array($this, 'show_html_into_form')); add_action('wpforo_editor_post_submit_after', array($this, 'show_html_into_form')); add_action('wpforo_portable_editor_post_submit_after', array($this, 'show_html_into_form')); if( $this->options['is_preview_on'] ) add_action('wp_ajax_wpforo_post_preview', array($this, 'ajax_post_preview')); if( $this->options['is_draft_on'] ){ add_action( 'wpforo_after_add_topic', array( $this, 'after_submit' ) ); add_action( 'wpforo_after_add_post', array( $this, 'after_submit' ) ); add_action( 'wpforo_after_edit_topic', array( $this, 'after_submit' ) ); add_action( 'wpforo_after_edit_post', array( $this, 'after_submit' ) ); add_action('wp_ajax_wpforo_save_revision', array($this, 'ajax_save_revision')); add_action('wp_ajax_wpforo_get_revisions_history', array($this, 'ajax_get_revisions_history')); add_action('wp_ajax_wpforo_get_revision', array($this, 'ajax_get_revision')); add_action('wp_ajax_wpforo_delete_revision', array($this, 'ajax_delete_revision')); add_action('wp_ajax_nopriv_wpforo_save_revision', array($this, 'ajax_save_revision')); add_action('wp_ajax_nopriv_wpforo_get_revisions_history', array($this, 'ajax_get_revisions_history')); add_action('wp_ajax_nopriv_wpforo_get_revision', array($this, 'ajax_get_revision')); add_action('wp_ajax_nopriv_wpforo_delete_revision', array($this, 'ajax_delete_revision')); } } }
the Revisions will work if the Guest user has at least one post with the Email he is using
Do you have an approximate date of when you expect wpForo 2.0 to be released?
The release will be in 1H of 2022
wpForo 2.0 will be released in First Half of 2022.
Any idea of ETA on this? Its been 6 months since our last update, and though i understand it is a big task, we were told it would be done around christmas/ new year time of 2021..... When you say first half of 2022, are we expected to wait another 6 months for the upgrade?Â