0

如果用户是 HubSpot 列表的一部分,我会尝试显示特定内容。

If contact_id is part_of_this_list then do this

目前正在从查询字符串中获取联系人 ID。我正在尝试检查用户是否在所述列表中,但它不起作用。

方法

{% set id_querystring = request.query_dict.id %}
{% set registration_list_id = "6136" %} <!-- id of the list I'm checking -->

{% if id_querystring in registration_list_id %}
 contact is part of list
{% else %}
 contact is not part of list
{% endif %}
4

1 回答 1

1

我使用这个代码:

{% set list_variable = request_contact.list_memberships|pprint %}
{% if "id of the list you are checking" in list_variable %} ← without the quotes

yes, you are in the list

{%else%}

No, you are not in the list

{%endif%}
于 2020-12-02T19:34:46.963 回答