The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
264 views

How Do I Use jQuery UI In My Plugin

It's a sad day in the world when I Google something and it returns nothing. I am trying to use the default datepicker (or ANY datepicker at this point) and am unable to because of my lack of ...
0
votes
0answers
33 views

How to select more than one date from calendar [closed]

i m using jQuery UI Widgets plugin to select date from the jquery calendar but it only allow to select only singledate. i want to select more than one date in calendar .can anyone help me how to do ...
1
vote
1answer
358 views

Inbuilt style for jquery-ui-datepicker

I want to use the datepicker that gets bundled with WordPress on the front end of a website. I enqueued jquery-ui-datepicker but the datepicker isn't styled(no js error in console). Is there a ...
0
votes
0answers
134 views

Datepicker Error on pages without Datepicker [closed]

Wordpress is giving me an odd console error from a datepicker script I enqueue-ed. I read over the other datepicker questions, but they didn't solve this because the datepicker is actually working. I ...
0
votes
1answer
235 views

Customizing the Jquery Calendar [closed]

I have never used Jquery before so I am quite stuck. The datepicker calendar that gets displayed is not quite what I am looking for, so I am looking to customize it, but don't even know where to ...
0
votes
1answer
629 views

wp_enqueue_script jquery and jquery ui not working

I am using the following script to call my Jquery and Jquery UI as well as a custom-script.js. Currently it works to the point of being able to see the resource in the inspector and the tag's are ...
0
votes
1answer
784 views

WP 3.3.1 Cant get jQuery Datepicker to work

at first i want to tell that i HAVE read the post: jQuery UI Datepicker not working already. I followed the instructions, but stll, i cant get it work. I am using WP 3.3.1 with the standard theme ...
0
votes
2answers
6k views

Uncaught TypeError: Object #<Object> has no method 'datepicker' [closed]

I want to use jQuery Datepicker in my website. However when I use the same I get the following error. Uncaught TypeError: Object # has no method 'datepicker' I've googled on this for quite sometime. ...
-1
votes
1answer
516 views

Convert WordPress date format to jQuery UI Datepicker format

I wrote the following function to convert the current WordPress date format into a format that can be recognized by the jQuery UI Datepicker: From: http://codex.wordpress.org/Formatting_Date_and_Time ...
3
votes
4answers
11k views

jQuery UI Datepicker not working

i want to add a datepicker on a custom page but i doesn not work. WP version is 3.2.1. Those are the init string i used on wp code: wp_enqueue_script('jquery'); wp_enqueue_script('jquery-ui-core'); ...
1
vote
3answers
4k views

Add a Jquery Datepicker to custom field in post edit

I would like to add a custom field that is set by a jquery datepicker ui in the post edit panel. Im new to wordpress, so Im not sure how to go about adding something like this. I haven't had much luck ...
2
votes
1answer
3k views

Add jQuery UI datepicker to admin panel

I created a custom post type with a couple of fields where the user can enter the start date and the end date for a project. I am trying to implement the jQuery datepicker but nothing happens when I ...
3
votes
2answers
5k views

Convert jQuery Datepicker Format to SQL Date Format

I set the jQuery Datepicker format to D d.m. displayed as Th 3.3. for a custom meta field that I want to use to sort posts. In SQL, the custom meta field is saved as D d.m. I would like to display ...