提交后,我的联系人表单将重定向到一个URL,后跟一个不熟悉的代码,如#wpcf7-f1258-o1。但我在附加标题中使用了on_sent_ok:"my_redirect();“。
请帮帮我!
发布于 2018-12-12 18:32:47
on_sent_ok方法已从联系人表单7中删除。
请参阅:https://contactform7.com/2017/06/07/on-sent-ok-is-deprecated/
尝试使用联系人表单所在页面上的挂钩:
add_action('wp_head', 'cf7_redirect_script');
function cf7_redirect_script(){
if(is_page('page-slug') { ?> // slug of the page which your contact form is on (can also be an ID)
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
// put the desired redirect URL below
location = 'http://yourdomain.com/thank-you';
}, false );
</script>
<?php }
} https://stackoverflow.com/questions/53740611
复制相似问题