Title: MasterRed's Replies | WordPress.org

---

# MasterRed

  [  ](https://wordpress.org/support/users/masterred/)

 *   [Profile](https://wordpress.org/support/users/masterred/)
 *   [Topics Started](https://wordpress.org/support/users/masterred/topics/)
 *   [Replies Created](https://wordpress.org/support/users/masterred/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/masterred/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/masterred/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/masterred/engagements/)
 *   [Favorites](https://wordpress.org/support/users/masterred/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPBruiser {no- Captcha anti-Spam}] Setting page is not showed](https://wordpress.org/support/topic/setting-page-is-not-showed/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/setting-page-is-not-showed/#post-6560403)
 * Thanks to MIhai for support.
 * The issue is not caused by the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPBruiser {no- Captcha anti-Spam}] Setting page is not showed](https://wordpress.org/support/topic/setting-page-is-not-showed/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/setting-page-is-not-showed/#post-6560280)
 * Done, have you received my message ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPBruiser {no- Captcha anti-Spam}] Setting page is not showed](https://wordpress.org/support/topic/setting-page-is-not-showed/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/setting-page-is-not-showed/#post-6560273)
 * Thanks for support.
 * EDIT
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPBruiser {no- Captcha anti-Spam}] Setting page is not showed](https://wordpress.org/support/topic/setting-page-is-not-showed/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/setting-page-is-not-showed/#post-6560169)
 * If I delete Goodbye Captcha in my database I still see “wp_gdbc_attempts” table
   and in wp_options” the options gdbcwordpressadminmodule-settings and gdbcsettingsadminmodule-
   settings.
 * If I delete a plugin, all options and tables of this plugin should disappear,
   why instead I still see them ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ninja Forms - The Contact Form Builder That Grows With You] Unique ID Error](https://wordpress.org/support/topic/unique-id-error/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [11 years ago](https://wordpress.org/support/topic/unique-id-error/#post-6248148)
 * Why edit post function disappears in short time?
    Forced to write new post 🙁
 * My goal was to show just a mistake at a time in the alert box above the form.
   
   This is my contribute:
 *     ```
       function register_maxdisplay_errori(){
         add_action( 'ninja_forms_pre_process', 'maxdisplay_errori', 100 );
       }
       add_action( 'init', 'register_maxdisplay_errori' );
   
       function maxdisplay_errori(){
   
         global $ninja_forms_processing;
   
         $all_errors = $ninja_forms_processing->get_all_errors();
         $numero_errori = count($all_errors);
   
           if( $numero_errori > 4 ) {
           $ninja_forms_processing->remove_error('spam-general');
           $ninja_forms_processing->remove_error('email-general');
           }
   
           elseif ( $numero_errori > 2 ) {
           $ninja_forms_processing->remove_error('spam-general');
           }
   
        }
       ```
   
 * I hope to be helpful to someone else.
    Maybe next time I will have a little help
   for gratitude.
 * Bye
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ninja Forms - The Contact Form Builder That Grows With You] Unique ID Error](https://wordpress.org/support/topic/unique-id-error/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [11 years ago](https://wordpress.org/support/topic/unique-id-error/#post-6248147)
 * I have solved with another type of function
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ninja Forms - The Contact Form Builder That Grows With You] Unique ID Error](https://wordpress.org/support/topic/unique-id-error/)
 *  Thread Starter [MasterRed](https://wordpress.org/support/users/masterred/)
 * (@masterred)
 * [11 years ago](https://wordpress.org/support/topic/unique-id-error/#post-6248071)
 * OK, found it but the code doesn’t work.
 * I need to be replaced, this code (in includes/fields/textbox.php row 306):
    `
   $ninja_forms_processing->add_error('email-general', $invalid_email);`
 * with:
    `$ninja_forms_processing->add_error('email-general', $invalid_email, $
   field_id);`
 * and this code (in includes/fields/spam.php row 131):
    `$ninja_forms_processing-
   >add_error('spam-general', $spam_error, 'general');`
 * with:
    `$ninja_forms_processing->add_error('spam-general', $spam_error, $field_id);`
 * My code is:
 *     ```
       function ninja_forms_newdisplay_error(){
         add_action( 'ninja_forms_pre_process', 'ninja_forms_newdis', 100 );
       }
       add_action( 'init', 'ninja_forms_newdisplay_error' );
   
       function ninja_forms_newdis(){
   
         global $ninja_forms_processing;
   
       $xxx = $ninja_forms_processing->get_all_errors();
       $xxx = array(
       'email-general' => array(‘error_msg’ => ‘MY MESSAGE’),
       'spam-general' => array (‘error_msg’ => ‘MY MESSAGE’)
       );
        }
       ```
   
 * Can you help me?

Viewing 7 replies - 1 through 7 (of 7 total)