magento - 购物车中的自定义选项价格

发布于 2024-11-25 03:51:43 字数 1435 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小兔几 2024-12-02 03:51:43

打开模板文件

app/design/frontend/default/theme/template/checkout/cart/item/default.phtml

找到 foreach 循环:

<?php foreach ($_options as $_option) : ?>

在该 foreach 循环中,添加以下代码:

<?php

        $optionId = $_option['option_id'];
        $product = $_item->getProduct();
        $option = $product->getOptionById($optionId);
        $itemOption = $_item->getOptionByCode('option_' . $option->getId());
        $price = false;
        foreach ($option->getValues() as $values) {
            if ($values->getId() == $itemOption['value']) {
                $price = $values->price;
            }
        }
        if ($price !== false) {
            echo Mage::helper('core')->currency($price);
        }

?>

Open up your template file

app/design/frontend/default/theme/template/checkout/cart/item/default.phtml

Find the foreach loop:

<?php foreach ($_options as $_option) : ?>

Within that foreach loop, add this code:

<?php

        $optionId = $_option['option_id'];
        $product = $_item->getProduct();
        $option = $product->getOptionById($optionId);
        $itemOption = $_item->getOptionByCode('option_' . $option->getId());
        $price = false;
        foreach ($option->getValues() as $values) {
            if ($values->getId() == $itemOption['value']) {
                $price = $values->price;
            }
        }
        if ($price !== false) {
            echo Mage::helper('core')->currency($price);
        }

?>
无声情话 2024-12-02 03:51:43

我建议为产品本身设置自定义选项,这样您就可以根据所选选项调整价格。这将允许客户选择他们想要的选项并在产品页面上查看价格调整。

以下是来自 Magento 博客的有关此内容的视频: http ://www.magentocommerce.com/blog/video-custom-product-options-in-magento-11/

I'd recommend setting up custom options for the product itself, which allow you to adjust the price according to the option that is selected. This will allow the customer to select they option that they want and see the price adjustment on the product page.

Here is a video about it from the Magento blog: http://www.magentocommerce.com/blog/video-custom-product-options-in-magento-11/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文