我想将WordPress网站上的Typeform收集的信息发送到我的对讲帐户。
我非常肯定要这样做,我需要在Interform数据的Intercom中创建自定义属性。
我目前正在使用对讲机插入Wordpress。 Intercom告诉我,我需要使用JS作为自定义属性,因为插件不支持该功能。
我知道如何在页脚中插入Intercom JS脚本。但是,我不知道如何以正确的方式设置脚本。
更具体地说:
这是PHP的对讲JS:
<script>
window.intercomSettings = {
app_id: "da0xoenf",
name: "<?php echo $current_user->name ?>", // Full name
email: "<?php echo $current_user->email ?>", // Email address
created_at: <?php echo strtotime($current_user->created_at) ?> // Signup date as a Unix timestamp
};
</script>
<script>(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',intercomSettings);}else{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args){i.q.push(args)};w.Intercom=i;function l(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/da0xoenf';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})()</script>
答案 0 :(得分:1)
所以听起来你试图将Typeform数据传输到内部通信会让自己陷入困境。让我们退一步看看主要问题和限制:
现在我们已经解决了这个问题,我建议您选择更简单的路线并链接 TypeForm&gt; Zapier&gt;对讲即可。这样你就不需要乱用任何后端代码了,你可以很快地获得这种安装。这是一个Zapier模板,可以帮助您入门:https://zapier.com/app/editor/template/912
关于自定义属性,它们本质上是与大多数用户相关的简短信息。例如。 “帐户类型”,“帐户状态”,“项目数量”等
您可以在对讲中创建它们,但只需将它们发送给我们即可。您需要做的就是将它们添加到您的Javascript代码段中,它们将自动创建。这是一个例子:
{
app_id: 'abc',
email: 'mycustomer@hisemail.com',
name: 'My Customer',
'Account Status': 'Trial'
}
这样的内容会创建一个用户(如果它们不存在),并将名为“帐户状态”的电子邮件,名称和自定义属性设置为“试用”。
有关自定义属性的更多详细信息,请访问docs网站: Custom Attributes