Hi.
If you want to disabled tooltip only for mobile and for website type only.
You could edit the file :
modules/mod_jaimagehotspot/assets/asset.php
Edit the code
OverAllData(_e, data, jaihp_settings);
if (jaihp_settings.trigger == 'hover' && !is_mobile_device()) {
// add click to the url if not click event.
_e.click(function(event) {
if ($(this).data('link'))
window.open($(this).data('link'), '_blank');
if ($(this).data('content_url'))
window.open($(this).data('content_url'), '_blank');
});
}
To
if (data.content_type != 'website')
OverAllData(_e, data, jaihp_settings);
if (jaihp_settings.trigger == 'hover') {
// add click to the url if not click event.
_e.click(function(event) {
if (data.content_type == 'default' && $(this).data('link'))
window.open($(this).data('link'), '_blank');
if (data.content_type == 'website' && $(this).data('content_url'))
window.open($(this).data('content_url'), '_blank');
});
}