Last active
August 29, 2015 14:07
-
-
Save SirDarcanos/896fd11690b7d6597460 to your computer and use it in GitHub Desktop.
woocommerce load JS file for admin order page async loading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'admin_enqueue_scripts', 'enqueue_custom_wc_load_address_js' ); | |
function enqueue_custom_wc_load_address_js() { | |
wp_enqueue_script( 'custom-wc-load-address', untrailingslashit( get_template_directory_uri() ) . '/jquery.wc-custom.js', array( 'wc-admin-order-meta-boxes' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment