• Resolved David Anderson

    (@davidanderson)


    Hi,

    The recaptcha code in wp-members-dialogs.php hard-codes http:// URLs. Modern versions of Chrome and Firefox refuse to load these if the site is https.

    The wpmem_recaptcha filter does allow site-builders to apply a fix for this. However, it’d be better if WP Members did the right thing without needing help, by using WP’s is_ssl() function; instead of http://, put:

    <?php echo (is_ssl()) ? ‘https://&#8217; : ‘http://&#8217;; ?>

    David

    http://wordpress.org/plugins/wp-members/

Viewing 1 replies (of 1 total)
  • Plugin Author Chad Butler

    (@cbutlerjr)

    That has been changed in the 2.9 version (which will likely be released this month). 2.9 is rebuilding all of the form building functions. (I actually thought I had changed it earlier, but looking at the release notes, I was mistaken – it’s only in 2.9.)

Viewing 1 replies (of 1 total)
  • The topic ‘Recaptcha hard-codes non-SSL http’ is closed to new replies.