如何在购物车中显示自定义属性(洋红色)

2022-08-30 23:50:44

我尝试过很多stuf,但没有一个工作。我想我可以在产品页面上获得自定义属性,但我想知道:如何在购物车页面中获取它们?(该属性只是一个简单的书面文本)


答案 1

$_item->getProduct()->load()将重新加载数据库中的所有产品数据。虽然这可以工作,但请记住,每次调用Magento时都会执行数据库查询。load()

通过加载属性以及报价单项,可以以更好的性能完成相同的操作。只需创建一个自定义模块并将其添加到配置中.xml

<global>
    <sales>
        <quote>
            <item>
                <product_attributes>
                    <one_custom_attribute_code />
                    <another_custom_attribute_code />
                </product_attributes>
            </item>
        </quote>
    </sales>
</global>

完成此操作后,无需其他数据库查询即可访问自定义属性。

$_item->getProduct()->getAnotherCustomAttributeCode();

这是一篇关于此的文章:https://www.atwix.com/magento/accessing-custom-attribute-at-checkout-or-cart/


答案 2

您是在谈论自定义选项还是简单属性?

简单属性(文本):
(在 default.phtml 中)

<?php $_item = $this->getItem()?>
<?php $_product= Mage::getSingleton('catalog/product')->load($_item->getProductId()) ?>
<?php echo $_product->getResource()->getAttribute('attribute_code')->getFrontend()->getValue($_product); ?>

推荐