kmedhus
Member
Posted 2 weeks ago #
I was wondering if there was any way to make the inserted reCAPTCHA module show up in the white theme (which is supported by the WP-reCAPTCHA plugin on its settings page but I'm just not sure how to enable that parameter here within Contact Form 7. I have added the module, etc etc (everything works).
http://www.prettyshinysparkly.com/contactme/
Thanks!
The current reCAPTCHA module for Contact Form 7 does not have options for selecting the theme for reCAPTCHA. It will be supported on the future update.
kmedhus
Member
Posted 2 weeks ago #
Great, looking forward to it. Thanks!
Hi!
if is possible to change it actually the theme? hardcoding it? it's to ugly the default recaptcha skin :P
thanks!
I had the same problem and found the solution. All you have to do is add this code in your external .JS file:
var RecaptchaOptions = { theme : 'clean' };
you can use white instead of clean
And if you don't have an external JS file just paste this between the <head> tags of your pages:
<script type="text/javascript">
var RecaptchaOptions = { theme : 'clean' };
</script>
fusionbeautie
Member
Posted 5 days ago #
Marcnyc, that worked for me. Thanks!