如果用户是 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 %}