-- HikaShop version -- : 1805171601
Hi,
We are doing template from scratch and doing this we found strange behavior with proceed to checkout link on cart module with android browser.
To reproduce the issue:
1. Add product to cart
2. Proceed to checkout from cart module
3.Now press back in android browser
4. Proceed to checkout stops working...
After page reload all is working fine again.
After some looking it seems the issue comes from this lines:
<a class="btn btn-primary btn-wide <?php echo $css_button . ' ' . $css_button_checkout; ?>" href="<?php echo $this->url_checkout; ?>" onclick="if(this.disable) return false; this.disable = true;"><span><?php
echo JText::_('PROCEED_TO_CHECKOUT');
?></span></a>
Removing onclick attribute solves the issue:
onclick="if(this.disable) return false; this.disable = true;
It seems issue only comes with android browser. Tried with S9+, S7 Edge, S6 and got same results... Tried with default protostar template too...
Cart module is set to use dropdown on click.
Can someone check the issue and confirm it?
Kind Regards