我在我的 WordPress 网站上嵌入了一个 Freshdesk 小部件。
当用户登录到 WordPress 网站时,我需要使用来自 WordPress 的用户凭据预先填充电子邮件字段。到目前为止,我自己或在支持下都没有运气。有人知道 WordPress 如何存储用户电子邮件以及如何从 WordPress 获取它吗?
这是我当前的代码:
<script src="http://assets.freshdesk.com/widget/freshwidget.js" type="text/javascript"></script>
<script type="text/javascript">
FreshWidget.init("", {"queryString": "&helpdesk_ticket[requester]={{user.email}}&helpdesk_ticket[subject]={{user.subject}}&helpdesk_ticket[custom_field][phone_number]={{user.phone}}&helpdesk_ticket[custom_field][product_id]={{helpdesk.product}}",
"widgetType": "popup", "buttonType": "text", "buttonText": "Support",
"buttonColor": "white", "buttonBg": "#338700", "alignment": "4",
"offset": "235px", "formHeight": "500px",
"url": "http://xxxxxx.freshdesk.com"} );
</script>