HUSKY - Products Filter Professional for WooCommerce

How to disable chosen js lib (drop-downs) for mobile devices

  • open your current theme functions.php file
  • drop there next php code:
    add_filter('woof_use_chosen', function($is)
    {
    	if (wp_is_mobile())
    	{
    	    return false;
    	}
    
    	return $is;
    });