Product Example:
Cloth with 3 options: Red, White and Blue.
Originally Cloth was a Simple Product. Red, White and Blue were it's Custom Option name 'Color'. So I was able to get the selected option by using:
$option->getTitle == "Color"
then
$group->getPrintableOptionValue($quoteItemOption->getValue());
to get the selected option during Checkout. (for example: Red)
================================================================
The problem now is, I have changed this product to Configurable Product. So I no longer need/have Custom Option. I have tried the code below:
$attributes = $product->getTypeInstance(true)->getConfigurableAttributes($product);
to get the attributes of Configurable Product.
I can get all the options(Id, name, all 3 option value) but the value that is being "Selected" during Checkout.
Any Magento Expert knows how to get the "Selected" option of Configurable Product during Checkout?
Thanks
Cheers,
Howard