Incorporating the extension from http://www.yiiframework.com/extension/recaptcha/ into my Yii project has been a successful endeavor thus far.
However, in an effort to enhance the responsiveness of my website, I recently made some modifications to the code which unfortunately caused it to stop functioning.
Here are my previous settings that were working perfectly:
/*<![CDATA[*/
var RecaptchaOptions = {
theme : 'white',
lang : 'en',
tabindex : 0
};
/*]]>*/
And here are my current settings:
/*<![CDATA[*/
var RecaptchaOptions = {
theme : 'custom',
custom_theme_widget : 'responsive_recaptcha',
lang : 'en',
tabindex : 0
};
/*]]>*/
Below is the CSS associated with my changes:
*,
*:after,
*:before {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#responsive_recaptcha {
(CSS styles go here...)
}
(more CSS rules...)
After implementing the custom theme, nothing appears on my site. Any insights as to what may be causing this issue?