Title: [Plugin: Events Manager] Problem with datepicker
Last modified: August 20, 2016

---

# [Plugin: Events Manager] Problem with datepicker

 *  Resolved [jiu](https://wordpress.org/support/users/jiu/)
 * (@jiu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/)
 * Hello,
 * I encounter some problem to insert new event, the datepicker is missing so i 
   can enter a correct date. I search on the web for a solution but don’t find. 
   It seems to be a jquery conflict.
 * I used the theme “sterling” from themeforest.
    Do you have any solution to correct
   that?
 * Thanks in advance.
 * [http://wordpress.org/extend/plugins/events-manager/](http://wordpress.org/extend/plugins/events-manager/)

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/4/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/2/?output_format=md)

 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2779792)
 * Did you also try to temporarily deactivate other plugins or revert back to default
   theme? also, please check if your theme is loading a different jquery version
   or if it’s using wp_head() ?
 *  [pollybean](https://wordpress.org/support/users/pollybean/)
 * (@pollybean)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2779816)
 * I’m having the same problem, no datepicker. Nothing has been updated or changed
   in my theme – however I have updated Event Manager to 5.1.7
 * I have deactivated all plugins – which makes no difference, but when I change
   to the default theme then the date picker works!
 * Not sure why this should suddenly happen – I’ve used the same theme successfully
   for 12 months with no problem.
 * Would love a solution or some tips to find one! Thank you!
 *  [Sea Jay](https://wordpress.org/support/users/jcollier/)
 * (@jcollier)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2779972)
 * FWIW, the datepicker is working fine with the BuddyPress default theme.
 *  Thread Starter [jiu](https://wordpress.org/support/users/jiu/)
 * (@jiu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2779974)
 * All plugin are deactivated. It working when i use wordpress default theme but
   not with the themeforest one…
 *  [Sea Jay](https://wordpress.org/support/users/jcollier/)
 * (@jcollier)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2779976)
 * Does your Themeforest theme use jquery-ui datepicker? If so, there may be a namespace
   conflict. Worth checking with the theme developers.
 *  [coxine](https://wordpress.org/support/users/coxine/)
 * (@coxine)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780001)
 * Hello I have the same problem with date picker on search form !
    My theme is 
   a theme forest one using jquery
 *     ```
       /* add javascript */
       	wp_enqueue_script( 'jquery' );
       	wp_enqueue_script( 'avia-default' );
       	wp_enqueue_script( 'avia-prettyPhoto' );
       	wp_enqueue_script( 'avia-html5-video' );
       	wp_enqueue_script( 'avia_fade_slider' );
       	wp_enqueue_script( 'avia-slider' );
       	wp_enqueue_script( 'aviacordion' );
       ```
   
 * Any idea ?
    Thank’s !
 *  Plugin Author [Marcus (aka @msykes)](https://wordpress.org/support/users/netweblogic/)
 * (@netweblogic)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780003)
 * in theory that bit will work, it should use the WP jquery library. check other
   bits for e.g. wp_register_script or stuff like that.
 *  [coxine](https://wordpress.org/support/users/coxine/)
 * (@coxine)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780005)
 * Thank’s a lot Marcus
    I’ve found this in functions.php theme
 *     ```
       wp_register_script( 'avia-default', AVIA_BASE_URL.'js/avia.js', array('jquery','avia-html5-video'), 1, false );
       	wp_register_script( 'avia-prettyPhoto',  AVIA_BASE_URL.'js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.0.1", true);
       	wp_register_script( 'avia-html5-video',  AVIA_BASE_URL.'js/projekktor/projekktor.min.js', 'jquery', "1", true);
       	wp_register_script( 'avia-slider',  AVIA_BASE_URL.'js/aviaslider-dev.js', 'jquery', "2.5.2", true);
       	wp_register_script( 'aviacordion',  AVIA_BASE_URL.'js/aviacordion-dev.js', 'jquery', "1.0.0", true);
       	wp_register_script( 'avia_fade_slider',  AVIA_BASE_URL.'js/avia_fade_slider-dev.js', 'jquery', "1.0.0", true);
       ```
   
 * What am I supposed to do ?
    Thank’s a lot ! Isabelle
 *  Plugin Author [Marcus (aka @msykes)](https://wordpress.org/support/users/netweblogic/)
 * (@netweblogic)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780006)
 * you probably want to remove a bit like
 *     ```
       wp_deregister_script('jquery');
       wp_register_script('jquery'....);
       ```
   
 *  [coxine](https://wordpress.org/support/users/coxine/)
 * (@coxine)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780007)
 * thank’s for your reply but I’m not a developer and don’t know what do to.
    It
   would be nice if the plugin doesn’t conflict with templates and other stuff !
 *  Thread Starter [jiu](https://wordpress.org/support/users/jiu/)
 * (@jiu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780013)
 * The problem is resolved with the update (5.1.7) for me, now event manager used
   the jquery library from wordpress.
 *  [achisholm@rogers.com](https://wordpress.org/support/users/achisholmrogerscom/)
 * (@achisholmrogerscom)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780020)
 * I am also using the Sterling theme and have deactivated all other plugins and
   am using 5.1.7, but it doesn’t work. Did this ever get resolved?
 *  Thread Starter [jiu](https://wordpress.org/support/users/jiu/)
 * (@jiu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780025)
 * It works durung 4 days and now it suddenly don’t show the date picker again, 
   during my client presentation. Don’t know why, nothing change on my installation.
   It sure i never install this plugin again!!!
 *  Plugin Author [Marcus (aka @msykes)](https://wordpress.org/support/users/netweblogic/)
 * (@netweblogic)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780029)
 * In my experience, ThemeForest provides some very badly written themes. I’m finding
   more and more that many of these incompatible themes come from there. I’m close
   to for the first time recommending AGAINST using a service like this.
 * We’re now using all the WP jQuery and UI libraries exclusively, so if your theme
   doesn’t preload those correctly, or tries to do something fancy like load from
   the Google CDN and loads version 1.4 then there’s bound to be problems.
 *  Thread Starter [jiu](https://wordpress.org/support/users/jiu/)
 * (@jiu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/#post-2780034)
 * Okay maybe the theme isn’t good written. But how can be possible that the plugin
   work during some days and and it doesn’t. Nothing new on my installation, any
   update, any new thing… 🙁

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/4/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/2/?output_format=md)

The topic ‘[Plugin: Events Manager] Problem with datepicker’ is closed to new replies.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=1039078)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

 * 46 replies
 * 17 participants
 * Last reply from: [Marcus (aka @msykes)](https://wordpress.org/support/users/netweblogic/)
 * Last activity: [13 years, 3 months ago](https://wordpress.org/support/topic/plugin-events-manager-problem-with-datepicker/page/4/#post-2780130)
 * Status: resolved