Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author IP Address Approval

    (@ipapproval)

    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, 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.

    @exxis that is the code (from @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)