Advertisement
brook-tribe

Fix ACF Plugin Conflict

Feb 11th, 2014
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_action('wp_enqueue_scripts', 'fix_acf');
  2.  
  3. function fix_acf () {
  4.     wp_dequeue_script( 'acf-datepicker' );
  5.     wp_deregister_script( 'acf-datepicker' );
  6.     wp_enqueue_script( 'jquery-ui-datepicker' );
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement