Hello, I have a very similar problem at my website running WP 4.0 Shop&Buy Version: 1.3.
My captcha key has been entered in the Template Options but when navigating to any page with Contact Form template it won't show the captcha input.
I've discovered this is because Google's Captcha is not loading secure image for the captcha code but my site is https-only.
Screen-Shot-2014-10-06-at-21.12.48.png
This is what I did:
I discovered by looking at gavern/classes/class.recaptchalib.php that recaptcha_get_html function signature accepts optional parameter $use_ssl
So I went to Edit Themes and edited the template.contact.php template, looked for recaptcha_get_html($publickey) and added the true parameter:
- Code: Select all
echo recaptcha_get_html($publickey, true);
It didn't work, so I went to gavern/classes/class.recaptchalib.php and "forced" the parameter to true:
- Code: Select all
function recaptcha_get_html ($pubkey, $error = null, $use_ssl = true)
Nasty, but it worked. I'm open to suggestions on why adding "true" didn't worked as a parameter.
Useful link:
https://developers.google.com/recaptcha/docs/tipsUseful tip: Use firebug!
2014-03-25-07-10-44-1aa0ef.png