在Business Catalyst中设置产品时,有一个产品维度部分,其中可以输入以下信息:
Online Shop Layouts上的BC文档不包含对{tag_dimensions}或类似内容的任何引用,我无法在线查找任何信息。
是否可以在BC的在线商店中输出产品尺寸?
答案 0 :(得分:2)
是!这可以使用{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 -%}