Magento 在视图页面获取产品信息
这可能是一个非常简单的问题。 (我的很多似乎都是)
但是如何在产品视图页面上显示基本的产品信息。以下是我试图访问的内容:
- 库存库存数量
- 补货日期
本质上,我正在寻找类似的东西,
<?php echo $_product->getQty(); ?>
除了只会给出购物车数量,但它甚至不起作用。
提前致谢!
This is probably a very easy question. (many of mine seem to be)
But how do you get basic product information to be echo'd on product view page. Here are the things I am trying to access:
- Inventory Stock Quantity
- Restock Date
Essentially I'm looking for something like
<?php echo $_product->getQty(); ?>
Except that would only give the in cart quantity, but it doesn't even work.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
用它来获取产品数量
Use this to get product quantity
由于补货日期是一个自定义属性,您只需从管理员中对其进行编辑(目录 > 属性 > 管理属性)并将其“在前端产品视图页面上可见”更改为“是” ”。
Since the restock date is a custom attribute you can simply edit it from the admin (Catalog > Attributes > Manage Attributes) and change it's "Visible on Product View Page on Front-end" to "Yes".
所以要获得数量。
由 Jagi Yadav 提供
So to get quantity.
Courtesy : Jagi Yadav
如果您想获取该产品的属性,可以这样做:
$_product->getColor()
其中 Color 是属性名称。
或者您可以使用以下语法调用属性:
$this->htmlEscape($_product->getData(color));
If you are looking to get an attribute on that product you can do it like this:
$_product->getColor()
where Color is attribute name.
Or you can call an attribute using this syntax:
$this->htmlEscape($_product->getData(color));