I have created custom field in custom option by using
I want to get my custom option from $block->getOption();
But my custom field not added in the list ..
Thanks.
I have created custom field in custom option by using
I want to get my custom option from $block->getOption();
But my custom field not added in the list ..
Thanks.
Try this....
$_product = $block->getProduct(); foreach ($_product->getOptions() as $o) { if ($o->getTitle() != 'Color') { // or another title of option continue; } foreach ($o->getValues() as $value) { print_r($value->getData()); } }