Hello,
I update the plugin with the corresponding fix.
It also contains the modification for "groupedlist" in HikaShop checkout workflow system.
Thus, it requires a small modification in the current version of HIkaShop (until the next release which will include the patch).
File : "administrator/components/com_hikashop/types/checkout_workflow.php"
Replace
case 'list':
if(!isset($s['values']))
break;
$ret .= JHTML::_('select.genericlist', $s['values'], $name, 'class="inputbox no-chzn" data-checkout-param="'.$k.'" onchange="window.checkoutWorkflowEditor.onChange(this);"', 'value', 'text', $v);
break;
By
case 'list':
if(!isset($s['values']))
break;
$ret .= JHTML::_('select.genericlist', $s['values'], $name, 'class="inputbox no-chzn" data-checkout-param="'.$k.'" onchange="window.checkoutWorkflowEditor.onChange(this);"', 'value', 'text', $v);
break;
case 'groupedlist':
if(!isset($s['values']))
break;
if(!HIKASHOP_J40)
$ret .= JHTML::_('select.genericlist', $s['values'], $name, 'class="inputbox no-chzn" data-checkout-param="'.$k.'" onchange="window.checkoutWorkflowEditor.onChange(this);"', 'value', 'text', $v);
else
$ret .= JHTML::_('select.groupedlist', $s['values'], $name, array('list.attr'=>'class="custom-select" data-checkout-param="'.$k.'" onchange="window.checkoutWorkflowEditor.onChange(this);"', 'group.id' => 'id', 'list.select' => array($v)));
break;
Regards,