Is possible to implement this captcha in another login form as php code?
]]>Hi their my website works on mobile and tablets as its theme that works with everything the problem is your free plug designed to work on mobile smart phones and tablet devices?
]]>Open /wp-content/plugins/keycaptcha/keycaptcha.php
Find line
$keycaptcha_path = WP_PLUGIN_DIR.'/keycaptcha';
After add
add_action( 'init', 'kcinit' );
function kcinit() {
global $wp_version, $keycaptcha_wp_o;
Find line
// uninstall KeyCAPTCHA
Before add
}
I installed keycaptcha, and it was pretty nice, but didn’t support the Sign up page for the default buddypress theme. I emailed keycaptcha support, and the next day they responded saying they would have support for it in 2 days, and sure enough, they did.
I’m sure its a coincidence that it only took 3 days, but it was a nice experience for a change. Usually support requests for things (not keycaptcha, but in general) take forever. And the plugin works well.
]]>