Title: IP Address Approval's Replies | WordPress.org

---

# IP Address Approval

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[IP Address Approval] Terrible – Shouldn’t be listed as public.](https://wordpress.org/support/topic/terrible-shouldnt-be-listed-as-public/)
 *  Plugin Author [IP Address Approval](https://wordpress.org/support/users/ipapproval/)
 * (@ipapproval)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/terrible-shouldnt-be-listed-as-public/#post-14977018)
 * 1. You DO manage the settings in the Plugin, in the WordPress Admin. Yes we DO
   provide a service, outside of WordPress, and our Plugin allows you to easily 
   add that service to your WordPress Website where you can manage the settings.(
   just like lots of other services do)
    - **As noted in the Arbitrary Section:** Please Note: You need to Create a User
      Account on our website [https://www.ip-approval.com](https://www.ip-approval.com),
      and add your IP Approval Credentials to the Plugin, before it will work.
    - 2. “tries to make you use URL’s to send a user to” ~No, actually we generate
      the pages ON YOUR SITE, and even add a message for you, but you do have the
      option to send them elsewhere.
    - 3. A poor rating, because of your lack of want or understanding, shouldn’t
      be a reflection of our plugin.
    - 4. You are welcome to use the free version of our service, just like 1000’
      s of other people. We have yet to send an email to our user base suggesting(
      or asking) that they upgrade. That said, you can even unsubscribe from receiving
      any emails from us.
 *  -  This reply was modified 4 years, 9 months ago by [IP Address Approval](https://wordpress.org/support/users/ipapproval/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] reCaptcha badge on ALL pages, not just pages with Contact Forms!](https://wordpress.org/support/?post_type=topic&p=10994806)
 *  [IP Address Approval](https://wordpress.org/support/users/ipapproval/)
 * (@ipapproval)
 * [6 years ago](https://wordpress.org/support/?post_type=topic&p=10994806&paged=6#post-13218953)
 * [@exxis](https://wordpress.org/support/users/exxis/) that is the code (from [@jarmerson](https://wordpress.org/support/users/jarmerson/))
   that we implemented, works beautifully!
 * We simply created a Custom Plugin so it will never be overwritten by any updates!
 * 1. Create a folder titled: contact-form-7-hide-reCaptcha-badge
    2. In the folder,
   create a PHP file: hide-reCaptcha-badge.php 3. Add the following code:
 *     ```
       <?php
       /*
       Plugin Name: Hide reCaptcha Badge
       Plugin URI: https://www.ip-approval.com
       Description: Hides the reCaptcha badge on ALL pages, that do not have a Contact Form 7 Shortcode/Form. 
       Author: IP Address Approval
       Author URI: https://www.ip-approval.com
       Version: 1.0.0
       License: GPL2
       */
       // Captcha ONLY on form pages.
       add_action( 'wp_enqueue_scripts', 'custom_load_contact_form_resources', 1 );
       function custom_load_contact_form_resources() {
           global $post;
           if (isset($post) && has_shortcode($post->post_content, 'contact-form-7')) {
               return;
           }
           remove_action( 'wp_enqueue_scripts', 'wpcf7_do_enqueue_scripts' );
           remove_action( 'wp_enqueue_scripts', 'wpcf7_recaptcha_enqueue_scripts' );
       }
       ?>
       ```
   
 * 4. Save your changes to the PHP file.
    5. Zip file and import in the Plugins 
   section -OR- FTP folder into the wp-content > plugins folder. 6. Activate the‘
   Hide reCaptcha Badge’ Plugin

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