显示购物车中特定类别产品的通知?

发布于 2024-11-18 23:05:30 字数 118 浏览 4 评论 0原文

我需要一些关于 magento 的帮助!我想做的就是显示一条注释或警告(关于运输或简单注释),条件是如果购物车包含任何产品,比如类别 4、6 或 8 等。

任何帮助将不胜感激!谢谢。

问候。

I want some help with magento! All i want to do is to display a note or a warning (regarding shipping or a simple note) under the condition that if the cart contains any product lets say from category 4 or 6 or 8 etc..

Any help would be appreciated! Thanks.

Regards.

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

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

发布评论

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

评论(1

计㈡愣 2024-11-25 23:05:30
$cart = Mage::getModel('checkout/cart');
$quote = $cart->getQuote();
foreach($quote->getAllItems() as $item){
    $product = Mage::getModel('catalog/product')->load($item->getProductId());
    foreach($product->getCategoryIds() as $cat_id){
        if($cat_id == 6||...) {
           ... do your stuff
        }
    }
}

希望有帮助

$cart = Mage::getModel('checkout/cart');
$quote = $cart->getQuote();
foreach($quote->getAllItems() as $item){
    $product = Mage::getModel('catalog/product')->load($item->getProductId());
    foreach($product->getCategoryIds() as $cat_id){
        if($cat_id == 6||...) {
           ... do your stuff
        }
    }
}

Hope that helps

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