如果未在联系表单7中签入,我们如何更改验证码错误消息?
请确认您不是机器人。
我正在使用C7的默认Google验证码集成方法。是否有任何方法可以在不编辑插件的情况下过滤这些消息?
一个网站使用Ceceppa Multilingua进行英语和法语翻译,其他网站只使用法语。
答案 0 :(得分:0)
经过不断的研究,我找到了解决方案。
<?php $err_mg = (get_lang() === 'en') ? "Sorry, captcha not solved. Please try again." : "S\'il vous plaît vérifier l\' Captche."; ?>
jQuery(document).ready(function(){
jQuery('.wpcf7').on('.wpcf7:spam', function(event){
jQuery('.wpcf7-recaptcha').append('<span class="captcha-error"><?=$err_mg?></span>');
jQuery('.captcha-error').css('color','red');
setTimeout(function(){
jQuery('.captcha-error').remove();
}, 5000);
});
});
联系表单7有新的自定义事件。
新的jQuery自定义事件触发器
- wpcf7:invalid
- wpcf7:spam
- wpcf7:mailsent
- wpcf7:mailfailed
- wpcf7:submit