gpt4 book ai didi

magento - 如何在magento中添加价格为 "Contact for Pricing"的产品

转载 作者:行者123 更新时间:2023-12-02 02:06:51 29 4
gpt4 key购买 nike

我有一个 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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com