Ne yapmak istiyorum benim özel özniteliği teklif ayarlanırsa o zaman herhangi bir ürün sepete eklenmesini istemiyorum. Özel özelliğim doğru ayarlanmış.
Ürünün sepete eklenmesini durdurmak için bu etkinliği gözlemleyen bir Gözlemci yazdım controller_action_predispatch_checkout_cart_add
Gözlemci dosya kodum:
public function execute(\Magento\Framework\Event\Observer $observer) {
$addedItemId = $observer->getRequest()->getParam('product');
$quote = $this->_cart->getQuote();
if(!empty($quote)) {
$customAttribute = $quote->getData('custom_attribute');
if(!empty($customAttribute)) {
$controller = $observer->getControllerAction();
$storeId = $this->_objectManager->get('Magento\Store\Model\StoreManagerInterface')->getStore()->getId();
$product = $this->_productRepository->getById($addedItemId, false, $storeId);
$observer->getRequest()->setParam('product', null);
$this->_messageManager->addError(__('This product cannot be added to your cart.'));
echo false;
$this->_actionFlag->set('', \Magento\Framework\App\Action\Action::FLAG_NO_DISPATCH, true);
$this->redirect->redirect($controller->getResponse(), 'checkout/cart/index');
}
}
}
Bu kod ile, sepete ekle işlemini durduramıyorum.
Magento1'in bu cevabına göre - /programming/14190358/stop-add-to-cart-and-supply-message-to-user-in-magento . Değiştirmeyi denedim
$this->_actionFlag->set('', \Magento\Framework\App\Action\Action::FLAG_NO_DISPATCH, true);
$this->redirect->redirect($controller->getResponse(), 'checkout/cart/index');
ile (Bu yapmanın en iyi yolu değildir. Daha iyi bir yol varsa, lütfen önerin)
header("Location: " . $product->getProductUrl());
die();
Bu sonuçta sepete ekle işlemini durdurur, ancak sepete ekle düğmesi "Ekleme" yi göstermeye devam eder . Sepete ekle düğmesinin önceki durumuna dönmesi ve ürünün de sepete eklenmemesi için bunu nasıl doğru şekilde yapabilirim?