Guest User

Untitled

a guest
Oct 21st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. if ( class_exists( 'YITH_WAPO' ) ) {
  2.  
  3. function pz_child_yith_pa_comp_fix() {
  4. wp_register_script( 'select2', WC()->plugin_url() . '/assets/js/select2/select2.full.min.js', array( 'jquery' ) );
  5. wp_enqueue_script( 'select2' );
  6.  
  7. wp_register_script( 'selectWoo', WC()->plugin_url() . '/assets/js/selectWoo/selectWoo.full.min.js', array( 'jquery' ) );
  8. wp_enqueue_script( 'selectWoo' );
  9.  
  10. wp_register_script( 'wc-enhanced-select', WC()->plugin_url() . '/assets/js/admin/wc-enhanced-select.min.js', array( 'jquery', 'selectWoo' ) );
  11. wp_enqueue_script( 'wc-enhanced-select' );
  12. }
  13.  
  14. add_action( 'admin_enqueue_scripts', 'pz_child_yith_pa_comp_fix' );
  15. }
Add Comment
Please, Sign In to add comment