Got any examples or doc on how to use the plugin with a form that submits via AJAX?
]]>There seems to be a database issue with the plugin – see this https://bit.ly/3k5tLMS. A table is missing apparently ‘wpdgc20_FC_captcha_store’ doesn’t exist ‘. Therefore the captcha image isn’t generated properly 0- https://bit.ly/3k2c3cY
I have properly installed the plugin via wp-admin; Not sure why the Database issue occured.
]]>I test in a new WP site, I get the notice:
Deletion failed: There has been a critical error on your website
Hello, love the plugin. I was just debugging why I was getting a 403 access denied when trying to load the image when discovered it’s due to the firewall that is in place.
To get around this, I simply changed the parameter “FC_captcha_request” to “FC_captcha_r” all where applicable. Loads fine now.
Thought I’d share since a lot of user’s (and security plugins) use perishables firewall rules.
]]>Flexxible captcha is not working event I add correct captcha value then still it’s it’s give me wrong captcha entered error. I am using with contact form7.
I have added below code also in function.php
add_filter( ‘wpcf7_form_elements’, ‘custom_wpcf7_form_elements’ );
function custom_wpcf7_form_elements( $form ) {
$form = do_shortcode( $form );
return $form;
}
add_filter(‘wpcf7_validate’, ‘custom_wpcf7_validate’);
function custom_wpcf7_validate($result) {
global $FlexibleCaptcha;
if (!$FlexibleCaptcha->check_captcha_val()) {
$captchaTag = new WPCF7_FormTag(array(‘type’=>’text’, ‘basetype’=>’text’, ‘name’=>’FC_captcha_input’));
$result->invalidate($captchaTag, ‘The entered text did not match the captcha image.’);
}
return $result;
}
add_filter(‘wp_head’, ‘custom_add_contact_captcha_regenerate’);
function custom_add_contact_captcha_regenerate($result) {
?>
<script type=”text/javascript” language=”javascript”>
jQuery(function() {
jQuery(‘.wpcf7-form’).on(‘ajaxComplete’, function() {
jQuery(‘.wpcf7-form .FC_image_refresh’).click();
});
var oldHtml = jQuery(‘.wpcf7-form .FC_captcha_input_container’).html();
jQuery(‘.wpcf7-form .FC_captcha_input_container’).html(‘<span class=”wpcf7-form-control-wrap FC_captcha_input”>’+oldHtml+'</span>’);
});
</script>
<?php
}
Welcome to the support forum for Flexible Captcha. Please take a few minutes to look through some of the support questions that have previously been asked. Your problem might have already been solved in a previous support thread. You can find information for setup and troubleshooting the app at the following addresses.
Documentation: https://www.sterupdesign.com/dev/wordpress/plugins/flexible-captcha/documentation/
]]>Bad work for login page! It’s don’t need to input captcha.
]]>Hi,
I have two queries:
Thanks
I have tried all the solution like enabling GD library with free type support and deleting and uploading font files from FTP at ../wp-content/uploads/fc-fonts/ and also making fc-fonts directory 0777 but with no luck. Images are still not rendering. My website captcha link is https://estrikers.com/career/php-mysql-programmer-job/
Fonts are displaying in setting page also Request key, font colors are present.
Please help me ASAP.
I can’t log-in to my site https://www.financemyboiler.co.uk/wp-admin/ as I can’t see the image. HELP – jamesdelargy at gmail.com
]]>The iamge location is here:
]]>Jeff,
Can this plugin easily work with Gravity Forms and/or Formidable Forms Pro?
Aside from installing and activating the plugin, would I need to do anything else to use it with these form systems?
Gary
]]>Hello,
my theme provide a (jQuery) contact form template. I edited the template and added the following code right before the “Send” button:
<?php echo do_shortcode('[FC_captcha_fields]'); ?>
The captcha asspears in the form but is not mandatory (the mail is sent even if the captcha is empty).
Any hint?
thanks
]]>