Hi,
1. I'm currently working on the FedEx "discounted rates" option.
2. Regarding the "Auto submit shipping and payment methods selection" option, we just fixed it, you'll just have to :
- Edit the "YOURWEBSITE\components\com_hikashop\views\checkout\view.html.php" file
- Add this code :
if($auto_select_default == 1 && count($usable_rates) > 1)
$auto_select_default = 0;
After these lines :
if(is_array($usable_rates) && count($usable_rates)){
$method = reset($usable_rates);
$config =& hikashop_config();
$auto_select_default = $config->get('auto_select_default',2);
Thanks for your feedback
.