我正在尝试在OpenCart3类别页面上的价格下添加产品默认重量,我该怎么做?
谢谢
答案 0 :(得分:2)
在这里的“类别”页面上显示价格以下的产品重量时,我有很好的答案
在类别部分,您可以执行以下步骤:
步骤:1月1日您打开文件:catalog / controller / product / category.php
在行下找到
'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,
添加或编写以下代码后
'weight' => $result['weight'],
步骤:2打开文件:目录/视图/主题/默认/模板/产品/category.twig
在行
下找到{% if product.rating %}
在添加或编写以下代码之前
<span class="text-weight" style="font-size: 12px;font-weight: 600;color: #e82a17;">weight : {{product.weight}} </span>
我希望我的代码可以100%正常工作。如果有任何问题,您可以通过评论框询问我。
谢谢。
答案 1 :(得分:0)
我对weight under price in product page here
做了类似的回答对于类别页面,它几乎是相同的:
catalog/controller/product/category.php
的文件line 203
中添加'weight' => $result['weight'] + 0,
catalog/view/theme/default/template/product/category.twig
上的文件line 142
中添加{{product.weight}}
这将显示重量