作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在产品页面(前端)上显示当前项目仅用于延期交货并且没有库存。
我目前有库存的产品显示可用数量,而延期交货的产品没有显示任何内容。
有谁知道我可以在 view.phtml 文件中放入的代码,该代码只会在设置为延期交货的产品上显示一条消息?
谢谢!
西蒙。
最佳答案
为此,请确保您已从库存选项卡启用延期交货。
如果您在产品页面上,则首先检索产品数量。
<?php
$inventory = Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product);
if( (int)$inventory->getQty() == 0 && $inventory->getBackorders() )
{
// No Backorders => getBackorders() = 0
// Allow Qty Below 0 => getBackorders() = 1
// Allow Qty Below 0 and Notify Customer => getBackorders() = 2
echo "display your backordedr message";
}
?>
app\design\frontend\base\default\template\catalog\product\view\type\default.phtml
产品的可用性消息来自的文件。
关于magento - 在 magento 前端显示缺货状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16459229/
我是一名优秀的程序员,十分优秀!