Yes, then i did understand it correctly..
However, the problem is just on ONE view, only the address view (address selection screen).
Problem still is, i need auto submit enabled so 1 click on the next button is enough, but i do not want the side effect, that addresses are made into links, because that's confusing. (people will think they can edit the address by clicking on it).
I've tried disabling auto submit in the beginning of the view, and to put it back on somewhere further down the view to make the next button work ok.
I figured the next button would be rendered somewhere below this code
<div class="hikashop_checkout_shipping_div" id="hikashop_checkout_shipping_div" <?php echo $style;?>>
<?php
So tried adding the "enable" code there, without luck.. Still needs 2 clicks..
Also tried to enable the auto submit in the global config, and just disabling it when rendering the addresses,
Disabling before these lines:
$this->type = 'billing';
echo $this->loadTemplate('view');
And enabling after these again:
$this->type = 'shipping';
echo $this->loadTemplate('view');
This did disable the auto submit before rendering the addresses, and made them "not clickable", however the next button still needs 2 clicks..