Here’s the fix for my theme … until it gets fixed in the plugin itself …
Add this to your functions script:
function fix_woo_var_cart()
{
wp_enqueue_script('add-to-cart-variation', '/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js',array('jquery'),'1.0',true);
}
add_action('wp_enqueue_scripts','fix_woo_var_cart');
That’s my crude code taken from another forum thread but it works fine.