Reputation: 143
how can I reference a custom js-file only to the Woocommerce edit / add product page?
Thanks in advance.
Ciao
Upvotes: 1
Views: 2562
Reputation: 143
This worked for me (to be added in themes's functions.php file):
//wholesale-prices
function add_admin_scripts( $hook ) {
global $post;
if ( $hook == 'post-new.php' || $hook == 'post.php' ) {
if ( 'product' === $post->post_type ) {
wp_enqueue_script( 'myscript', get_stylesheet_directory_uri().'/js/wholesale-prices.js' );
}
}
}
add_action( 'admin_enqueue_scripts', 'add_admin_scripts', 10, 1 );
Upvotes: 2