作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Magento 网站。
我有许多产品要添加。
But some have price as "Contact for Pricing" or "Call for Pricing" so cant to add.
Because there has validation for the price.
那么如何添加此类产品呢?
是否有此类产品的模块?
我需要将此类产品的价格显示为“联系定价”或“调用定价”。
是否有免费下载“调用询问价格”的扩展程序?
最佳答案
乔希的回答略有改进。感谢 Josh 使用属性的想法!
为此示例创建属性代码“call_4_price”。就像乔希建议的那样,将其设为是/否属性。默认值“否”。将其添加到您需要隐藏价格的属性集中。
查找“价格和添加到购物车按钮”所在的所有 .phtml 文件(模板 > 目录 > 产品 > view.phtml、price.phtml、list.phtml 等)
将此代码粘贴到价格代码之前。
<!-- Call For Price - begin -->
<?php $attribute = $_product->getResource()->getAttribute('call_4_price'); ?>
<?php $attribute_value = $attribute ->getFrontend()->getValue($_product); ?>
<?php if ($attribute_value == 'Yes'): ?>
//Please Call for pricing
<?php else: ?>
这是在添加到购物车按钮之后。
<?php endif; ?>
<!-- Call For Price - end -->
关于magento - 如何在magento中添加价格为 "Contact for Pricing"的产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11752610/
我是一名优秀的程序员,十分优秀!