2017-08-08 100 views
0

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

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

回答

0

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

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

我在哪里需要添加此代码? – Sanj

+0

你可以将其添加到页脚文件 – Chinou

+0

如果我在页脚中添加它,那么它将重定向所有联系人窗体,但我只需要一个特定的联系人窗体,窗体ID是5240。 – Sanj

相关问题