If statement 如何为主页执行IF语句?

If statement 如何为主页执行IF语句?,if-statement,bigcommerce,If Statement,Bigcommerce,我最近发现,如果是一个类别而不是一个产品页面,如何触发if/thens。主页可以这样做吗?我正在尝试设置一些自定义元标记,但仅通过base.html文件在主页上设置 我已经试过了{{{如果家}和{{{如果主页}但没有成功。想法 示例: {{#if product }} <do a thing on product pages> {{/if}} {{#if category }} <do a thing on category pages

我最近发现,如果是一个类别而不是一个产品页面,如何触发if/thens。主页可以这样做吗?我正在尝试设置一些自定义元标记,但仅通过base.html文件在主页上设置

我已经试过了{{{如果家}和{{{如果主页}但没有成功。想法

示例:

    {{#if product }}
    <do a thing on product pages>
    {{/if}}

    {{#if category }}
    <do a thing on category pages>
    {{/if}}
{{{#if product}
{{/if}
{{{#如果类别}}
{{/if}

您可以检查当前模板:

{{#if template '==' 'pages/home'}}
   ...
{{/if}}