首页 > 解决方案 > 联系表格 7 重定向问题

问题描述

提交后,我的联系表单会重定向到一个 URL,后跟一个不熟悉的代码,例如 #wpcf7-f1258-o1。但我使用 on_sent_ok: "my_redirect();" 在附加标题上。

请帮忙!

标签: wordpress

解决方案


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 } 
} 

推荐阅读