I tried to get value of attributes of configurable products.

enter image description here

my question is: how to get the price and selected value of associated product?

Thanks.

有帮助吗?

解决方案

Try below code

$_product = $this->getProduct();// Or you can load your product here
$_attributes = $_product->getTypeInstance(true)->getConfigurableAttributesAsArray($_product);
print_r($_attributes);
许可以下: CC-BY-SA归因
scroll top