dpfuhl
Member
Posted 4 months ago #
After installation of the plugin and insert of the code in the form, no captcha is displayed. A look into websides code shows:
<div class="hidden" style="display:none;">
<input type="hidden" value="1982260237" name="_wpcf7_captcha_challenge_captcha-920">
<img class="wpcf7-form-control wpcf7-captchac wpcf7-captcha-captcha-920" width="72" height="24" src="http://www.gfk-goettingen.de/gfk-goettingen/wp-content/uploads/wpcf7_captcha/1982260237.png" alt="captcha">
<span class="wpcf7-form-control-wrap captcha-920">
</div>
So the automatically generated style="display:none" hides the whole captcha-div. I got no idea were this part of code is from and how to fix it.
Thank you very much for any suggestions!
http://wordpress.org/extend/plugins/really-simple-captcha/
What form plugin do you use? At least it is not Contact Form 7.
dpfuhl
Member
Posted 4 months ago #
Thanks for your reply, Takayuki!
Still it is Contact Form 7, V 3.2 in combination with Contact Form 7 Modules: Hidden Fields 1.2.1 and Really Simple CAPTCHA 1.5. WordPress ist 3.3.1.
Try deactivating all other plugins than Contact Form 7 and Really Simple CAPTCHA. And switching to the default theme.
dpfuhl
Member
Posted 4 months ago #
Well, I've found a solution:
When inserting the generated shortcodes into the form, both must be wrapped by HTML-Tags with explicit defined classes, e.g.
<p class="captcha-image">[captchac captcha-410]</p>
<p class="captcha-input">[captchar captcha-410]</p>
When no classes are defined, output HTML code changes to the weired example given in my initial post.