Home › Forums › WoodMart support forum › Disable mobile hover › Reply To: Disable mobile hover
January 19, 2018 at 1:09 pm
#34243
Artem Temos
Keymaster
Hi,
Try to add the following code snippet to the Custom JS area in Theme Settings to change this behavior
if( jQuery(window).width() <= 1024 ) {
jQuery('body').on('click', '.woodmart-hover-base', function( e ) {
window.location = jQuery(this).find('.product-element-top > a').attr('href');
});
}
Regards