Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter moonshdw8

    (@moonshdw8)

    The emails weren’t in spam but Office 365 was quarantining them, so i have them now.
    I had already installed the Premium Plugin, but for anyone else who has a Multi-site installation, the instructions are different and not documented on their website.
    Here is how you do it.
    1. Install the Premium plugin
    2. Network Activate the plugin (you will NOT be redirected to enter the license key)
    3. Go to each individual sub-site’s Plugin page. Under the WP Data Access Premium plugin, there is a link to “Activate License”.

    Thread Starter moonshdw8

    (@moonshdw8)

    I looked at the code you directed me to and that doesn’t really apply to my situation.
    It sounds like you simply no longer allow the 3 options, true, false, or null.
    You only allow 2 options True or Null/False.

    Thread Starter moonshdw8

    (@moonshdw8)

    WordPress Version is 6.1.1.
    When we used version 1.67 of this plugin, this code on the page worked great:

    <?php $check_result = apply_filters( 'gglcptch_verify_recaptcha', true, 'string' );
    	if ( true === $check_result ) { /* the reCAPTCHA answer is right */
    		echo'REcaptcha has been submitted successfully';
    	} elseif ( false === $check_result) { /* the reCAPTCHA answer is wrong or there are some other errors */
    		echo "Something went wrong with ReCaptcha. Please try again or refresh the page.";
    	} else {
    		echo 'For your security, please use ReCaptcha below, then you will be directed to the login form.';
    		echo '<form name="FormSubmit" method="POST" class="check-elig">';
    		echo apply_filters( 'gglcptch_display_recaptcha', '' );
    		echo '<input name="FormSubmit" type="submit" value="Submit" id="FormSubmit" />
    			</form>';
    	}
    ?>

    After upgrading to version 1.70, that code does not work any more. The Plugin returns a “1” instead of “blank”, which makes my “if” statements invalid.
    If I look in your plugin’s source code, I found this change:

    the old code was:
    ! isset( $gglcptch_options[ $form_slug ] ) ||
    The new code is:
    isset( $gglcptch_options[ $form_slug ] ) &&

    If I change the code back to the old way, everything works fine, but I, of course, don’t want to modify plugin code.
    I can’t provide a link because it’s on a Development box. We make sure everything works in Development before making it live on our Production Server.
    I’ve attached screenshots of what is looks like with the old plugin versus the new plugin.

    Thread Starter moonshdw8

    (@moonshdw8)

    Fixed this if anyone else has the same problem. It was a plugin called “Sidebar Login Widget”.
    Even if the plugin was de-activated, it was automatically redirecting url references to the login page, back to the home page. Deleted the plugin and all was well.

    Thread Starter moonshdw8

    (@moonshdw8)

    Just to make sure this wasn’t something relegated solely to the menu, I created a simple hyperlink on a page to go to the login page, and it too failed.

    I’d also like to chime in and say that I had a great experience with support. Quick response time and continued to keep on top of my issue quickly until it was resolved.

    Thread Starter moonshdw8

    (@moonshdw8)

    Ahhhhh. Well I guess that would explain it then.
    That is a huge help and will keep me from pulling my hair out any longer.

    Thanks so much!

    Thread Starter moonshdw8

    (@moonshdw8)

    I attempted this on 2 different servers now with fresh installs and still had the same issue.

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