模板脚本使其仅对shopify上的管理员可见

时间:2015-05-27 21:26:17

标签: javascript php web-applications shopify

我想在shopify上制作一个模板,仅供管理员使用。 我只能让客户看到它,但现在只需要管理员代码。

我使用的客户代码是:

{% unless customer %}
    {% if template contains 'customer' %}
        {% assign send_to_login = false %}
    {% else %}
        {% assign send_to_login = true %}
    {% endif %}
{% endunless %}

{% if send_to_login %}
<meta content="0; url=/account/login?checkout_url={{ shop.url }}" http-equiv="refresh" />
{% else %}
==== Page Content ===
{% endif %}
//The code above asks to the user to login if they visit this template 

现在是否可以为管理员制作类似的内容?管理实体的名称是什么?例如,实体客户是&#39;客户&#39;。我应该如何在代码中声明管理员? 提前致谢。

1 个答案:

答案 0 :(得分:0)

请参阅以下类似问题:

目前没有很好的方法可以为客户检查管理员。您的选项是tag your customers as admins,仅在客户拥有管理员代码时显示您的模板,或check against the customer's email address以确定他们是否为管理员。