联系表单7发送数据并重定向到wordpress中的其他域页面

时间:2017-08-08 12:04:11

标签: wordpress url-redirection contact-form-7

我在wordpress上有多个联系表单7,我想要一个表单重定向,发送帖子数据到其他域页面。 我在functions.php中添加了以下代码,用于重定向我的特定联系表单,数据已成功发送但页面未重定向。

add_filter('wpcf7_form_action_url', 'wpcf7_custom_form_action_url');
function wpcf7_custom_form_action_url($url)
{
global $post;
$id_to_change = 5240;
if($wpcf7_contact_form->ID === $id_to_change)
    return 'http://34.209.247.91:8069/page/register';
else
    return $url;
}

1 个答案:

答案 0 :(得分:0)

以下是在wpcf7mailsent事件发生时将您重定向到另一个URL的脚本示例。

<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
location = 'http://example.com/';
}, false );
</script>