Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hello, I asked about this prior to purchasing on themeforest. I need to fix this so it only takes a regular 1 click on the add to cart button/text/icon whatever it is... as long as it takes 1 click, instead of forcing the customer to click the button twice to add to cart due to the link hover effect. This is only a problem on iOS devices... iphones and ipads.
You said I could disable the + and go with simple "add to cart". This solves the issue because there's no hover effect on the simple "add to cart" but it overlays the product name.
How would I go about removing the "add to cart" hover from the + button? That should fix the issue according to this post:
https://www.powderkegwebdesign.com/ever-wonder-links-mobile-browsers-require-click-twice/
thanks much!
Hi Nguy,
Can you please add this JS code in theme options > footer:
<script> jQuery( document ).ready( function( $ ) {if ( typeof window.ontouchstart !== 'undefined' ) {
jQuery( '.add_to_cart_button' ).tooltip( 'destroy' );
}
} ); </script>
This will disable tooltips on hover (touch devices) and thus only one click is required to add the product to cart.
You can choose to use the + icon to use again.
This seems to do the trick!!
Thanks so much!
You are welcome. Have a great day there.
Quick follow up on this. It only works if I modify the core file footer.php. It does not work if I paste it in the theme options > footer > tracking code, even though I see it gets inserted into the website code.
Is there a way I can hard code this into the child theme at least?
Hi,
I have a modified version of that code:
It worked for me when I have tested on mobile device.
That seems to take care of it!
I'm not sure if you guys have gotten a request for this before, but for me, this was the only pre-sale issue at the time.
Thanks again.
Thats great!
Yes, I saw that one of our team members has added this to todo list and will implement in the future updates.