mario1966
Forum Replies Created
-
Forum: Plugins
In reply to: [Site Reviews] hCaptcha works, but not working anymore with CForm7I send the email.
ThanksForum: Plugins
In reply to: [Site Reviews] hCaptcha works, but not working anymore with CForm7Hi @geminilabs, thanks for the reply.
1. Are you displaying the Contact Form and the Review Form on the same page?
No, I use hCaptcha for login and contactforms, and not on the same page.
2. Which hCaptcha options have you enabled in the hCaptcha plugin settings?
I have the follow options enabled, its Dutch, but between () is English for you:
Schakel hCaptcha in op het aanmeldingsformulier ( login form)
Schakel hCaptcha in op het registratieformulier (registration form)
Schakel hCaptcha in op formulier verloren wachtwoord ( lost password)
Schakel hCaptcha in op het reactieformulier ( comments form)
Schakel hCaptcha in op Contact Form 7 ( contact form 7)3. Have you entered a language code in the “Override Language Detection” hCaptcha plugin setting?
No, I leave this option open, like it is, so its empty
I like to contact you, what u said, but I see only a link to this forum, nothing else where I can contact you.
BTW, I switch off the hCaptcha function in de site reviews plugin, so if you want to check the URL, you see no hCapcha.
Oh, to make it more clear, the hCaptcha works on the review “add a review”page, but if this enabled, the other hCaptcha’s (contact, and so on) doesnt work, there are not visable on the website. If I fill in the contact form, the contactform says, you do not fill in all. But the contactform see the missing hCaptch as, “not filled in all of them) If I diable the hCaptcha in de site-review plugin, the hCaptcha’s on the other form, then will be visable.Thanks
Ok, we will wait for it.
Thanks!
Hi,
I had the same problem, i because you get no answere, I fixed it by myself.
How? I toke an older version, and replace same code.
What you must do:
Open this file.
Replace the content i that file, with this file:
<?php
/*
Plugin Name: WordPress Simple Website Screenshot
Plugin URI: http://www.digg-it.info/wordpress-simple-website-screenshot-v-0-5
Description: Make simple website screenshot via shortcode without watermark.
Version: 0.5
Author: Pigi
Author URI: http://www.digg-it.info
License: GPL2
*//* Copyright 2010 Pigi (email : pigi.bari@gmail.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/require_once(‘screenshot_menu.php’);
function screenshot($atts) {
extract(shortcode_atts(array(
“url” => ‘www.’
), $atts));extract(shortcode_atts(array(
“width” => ‘width’
), $atts));extract(shortcode_atts(array(
“height” => ‘height’
), $atts));$sc_default_width = get_option(‘default_width’);
$sc_default_height = get_option(‘default_height’);return ‘
<img src=”http://s.wordpress.com/mshots/v1/http%3A%2F%2F’.$url.'” width=”‘.$sc_default_width.'” height=”‘.$sc_default_height.'” border=”0″><bt /><hr>
‘;
}add_shortcode(‘screenshot’, ‘screenshot’);
?>Maybe it is not a nice way, but before there is a solution, you can you it now.
Have fun!