Unhook jQuery from WooCommerce via `functions.php`? [closed]

Actually it looks like your calling jquery wrong. You should always use wp_enqueue_script, otherwise your asking for conflicts. Don’t call it manually.

The lines you pasted in from WooCommerce don’t load jquery directly – they load it by setting the dependencies for the other scripts. WordPress handles the rest.

If you want to use jQuery from a CDN, deregister it and re-register it with the CDN version. Rather than paste you the code I’ll direct you to the following example which explains how:

http://www.wpbeginner.com/wp-themes/replace-default-wordpress-jquery-script-with-google-library/