业务催化剂:在网上商店布局中显示产品尺寸

Business Catalyst: Display Product Dimensions in Online Shop Layouts

在 Business Catalyst 中设置产品时,有一个 产品维度 部分,可以在其中输入以下信息:

Online Shop Layouts 上的 BC 文档不包含对 {tag_dimensions} 或类似内容的任何引用,我无法在网上找到任何信息。

BC的网店可以输出产品尺寸吗?

是的!这可以使用 {module_data}!

插入小型产品布局或大型产品布局的以下内容将使用相关产品的 ID 并将该产品的产品尺寸输出为 JSON 数据。

{module_data resource="products" version="v3" fields="productVolume,productHeight,productDepth" skip="0" limit="10" where="\{'catalogs.productId':'{{id}}'\}" order="id" collection="myData"}

JSON 数据可用于显示产品尺寸,例如:

    {% for item in myData.items -%}

        <table>
            <tbody>
                <tr>
                    <th>Width</th>
                    <th>Height</th>
                    <th>Depth</th>
                </tr>
                <tr>
                    <td>{{item.productVolume}}</td>
                    <td>{{item.productHeight}}</td>
                    <td>{{item.productDepth}}</td>
            </tbody>
        </table>

    {% endfor -%}