Skip to content

Instantly share code, notes, and snippets.

@hannahswain
Created September 15, 2016 19:18
Show Gist options
  • Save hannahswain/5fcd1f025e357b6bb165510b6c9f196b to your computer and use it in GitHub Desktop.
Save hannahswain/5fcd1f025e357b6bb165510b6c9f196b to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'custom_frontend_scripts' );function custom_frontend_scripts() {global $post, $woocommerce;
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? : '.min';
wp_deregister_script( 'jquery-cookie' );
wp_register_script( 'jquery-cookie', $woocommerce->plugin_url() . '/assets/js/jquery-cookie/jquery_cookie' . $suffix . '.js', array( 'jquery' ), '1.3.1', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment