We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba48298 + 749c58f commit d07be23Copy full SHA for d07be23
app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php
@@ -46,7 +46,7 @@ public function getValuesHtml()
46
if ($_option->getType() == \Magento\Catalog\Model\Product\Option::OPTION_TYPE_DROP_DOWN) {
47
$select->setName('options[' . $_option->getid() . ']')->addOption('', __('-- Please Select --'));
48
} else {
49
- $select->setName('options[' . $_option->getid() . ']');
+ $select->setName('options[' . $_option->getid() . '][]');
50
$select->setClass('multiselect admin__control-multiselect' . $require . ' product-custom-option');
51
}
52
foreach ($_option->getValues() as $_value) {
0 commit comments