前端显示产品成本
我试图让产品的成本显示在前端列表视图中。我有一家仅提供可下载产品的商店,为了设置下载价格,您必须将产品成本设置为 0.00 美元,然后在链接部分添加每个可下载产品的价格。
因此,在后端,我设置了要在“成本”部分下显示的价格,因此它不会包含在计算中,但我想在前端列表视图中显示该成本价格。
知道如何实现这个
谢谢
I'm trying to get the Cost of a product to display in the front end list view. I have a store with just downloadable products, and for setting up prices for downloads, you have to set the product cost to $0.00 and then you add the price for each downloadable in the links section.
So in the backend i have set up the price i want to show up front under the 'cost' section so it doesnt get included in the calculations, but i would like to show that cost price in the front end list view.
Any idea how to accomplish this
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要更改属性配置。
转到目录 ->属性->管理属性选择属性成本并将选项“在产品列表中使用”更改为“是”。
保存后,您可以使用以下方法将属性值调用到模板中: $_product->getCost()
You'll need to change the attribute configuration.
Go to Catalog -> Attributes -> Manage Attributes select the attribute Cost and change the option "Used in Product Listing" to "Yes".
After you save you can call you attribute value into your template using: $_product->getCost()