Hello,
Thanks for the feedback, I just made a fix about this, so you'll just have to edit the code of the file : "plugins\hikashopshipping\ups\ups_configuration.php".
And change that lines :
<?php
$arr = array(
JHTML::_('select.option', 'auto', JText::_('Auto-determination') ),
JHTML::_('select.option', 'res', JText::_('Residential Address') ),
JHTML::_('select.option', 'com', JText::_('Commercial Address') ),
);
echo JHTML::_('hikaselect.genericlist', $arr, "data[shipping][shipping_params][destination_type]", 'class="inputbox" size="1"', 'value', 'text', @$this->element->shipping_params->pickup_type);
By :
<?php
$arr = array(
JHTML::_('select.option', 'auto', JText::_('Auto-determination') ),
JHTML::_('select.option', 'res', JText::_('Residential Address') ),
JHTML::_('select.option', 'com', JText::_('Commercial Address') ),
);
echo JHTML::_('hikaselect.genericlist', $arr, "data[shipping][shipping_params][destination_type]", 'class="inputbox" size="1"', 'value', 'text', @$this->element->shipping_params->destination_type);