Pregunta

I want to get selected associated product information from configurable product after an checkout_cart_add_after triggered. I'll look after it in mean time,if any helps would be appreciable.

¿Fue útil?

Solución

Add below code in your observer file

$item = $observer->getQuoteItem();

$product = $item->getProduct();
$typeId = $product->getTypeId();
if ($typeId == \Magento\ConfigurableProduct\Model\Product\Type\Configurable::TYPE_CODE) {

    $attributes = $product->getTypeInstance()->getSelectedAttributesInfo($product);
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top