문제

Direct Delivery라는 속성이 있습니다.배송 방법 페이지에 메시지를 표시하는 방법이 있습니까? 고객에게 장바구니에 직접 배달 항목이 있는지 알려줍니다.속성 "직접 배달"은 예 / 아니오 속성입니다.

고맙습니다

도움이 되었습니까?

해결책

file.you는 제품 목록을 가져와 IT 속성 값을 확인해야합니다. yes

$quote = Mage::getSingleton('checkout/session')->getQuote();
        $cartItems = $quote->getAllVisibleItems();
        foreach ($cartItems as $item)
        {
            $productId = $item->getProductId();
            $product = Mage::getModel('catalog/product')->load($productId);
                   if($product->getData('attributecode')==1){
             //direct delivery possaible

                }
                }
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top