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.
1 parent ca56cd8 commit 749c58fCopy full SHA for 749c58f
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