Viewing 15 replies - 16 through 30 (of 31 total)
  • Oops, I found a bug. I updated the plugin. Delete the old one and try this one

    sorry about that

    @markob83 – still nothing – am I missing something?
    http://dewetvanrensburg.me/sites/expert/central-kalahari/

    Try using the Twenty Twelve theme

    Thanks @markob83 – it’s working with Twenty Twelve – but I need a solution that will work with the theme I am using 🙁

    Can you send me a copy of your theme? My email address is markob83@yahoo.com. I can take a look at it tomorrow.

    I’m having the same problem with the date picker. I’ll try the jquery solution, but would really like for the plugin to work. The date picker works in chrome, opera, and ios. Does not work with firefox, safari, or ie.

    Contact Form 7 has some Datepicker support via the new HTML5 date input type (see http://contactform7.com/date-field/) but this is currently only supported on some browsers – see http://www.wufoo.com/html5/types/4-date.html

    Hi, Its fixed for me.Thanks dewetvanrensburg

    markob83 – for me, your plugin would work for one date field, but not a second – any way to make it work for two seperate date fields?

    Hi Markob83,

    There was same problem for me too.I managed to get rid of it with adding the new date picker name to the script in header file like below

    <script>
    $(function()
    {
    $.noConflict();
    $( “#datepicker” ).datepicker();
    $( “#datepicker1” ).datepicker();
    });
    </script>

    Here is the solution by the Contact Form 7 FAQ page.

    Does Contact Form 7 support HTML5 input types?

    Yes. Contact Form 7 3.4 and higher support form-tags corresponding to these HTML5 input types: email, tel, url, number, range and date.

    If you don’t wish to use HTML5 input types, you can disable this by adding the following code into your theme’s functions.php file:
    1

    add_filter( ‘wpcf7_support_html5’, ‘__return_false’ );

    Note that even the most current browsers partially support HTML5. For example, the latest Firefox doesn’t support the date input type (that allows you to choose a date from a calendar user interface) and the number input type (that allows you to input a number value from a spinbox UI) yet — so Firefox provides a general text input field as a fallback instead of a calendar and spinbox UI. This may confuse users because they can’t detect what type of input value this field expects. So, you may feel that it is better to wait for all browsers to support all HTML5 features completely.

    But you don’t need to wait! Contact Form 7 offers a better solution. Contact Form 7 is able to provide jQuery UI-based fallback for the date and number input fields. By using this solution, you can provide calendar UI for the date field and spinbox UI for the number field, respectively, even with Firefox or Internet Explorer.

    By default, this fallback feature is disabled because it loads extra JavaScript and CSS (makes for poor performance) and it is only necessary for websites that use the date or the number input fields. If you use the date or number input fields and wish to use this jQuery UI-based fallback feature, add the following code into your theme’s functions.php file and activate the feature:
    1

    add_filter( ‘wpcf7_support_html5_fallback’, ‘__return_true’ );

    Hello, I need a contact form for my taxi website, but I would like to have a date form where you click on a calendar and select a date.
    Can this plugin work that way?

    I generated date form, but you have to type a date manually, it does not look professional to me. 🙂

    If this plugin cannot work that way, and recommendations for a plugin?
    Thanks!

    OK, just found the solution using google and made the date drop form… 😉

    If you know something better for me, write anyway…

    Can confirm that @nikoslefkas’s reply from the CF7 FAQ section does work for me:

    Adding this to the theme functions.php
    add_filter( 'wpcf7_support_html5_fallback', '__return_true' );

    The change is most drastic in Firefox.

    Hello, time field is not working when I add TT or tt to time format.
    It adds AM/PM , am/pm to time format.

    If I set time more than 12pm, I get “Invalid time supplied”
    If I set anything earlier than 12pm, all is ok.

    Does anybody know what is the problem?

    P.S.
    I can remove TT / tt and have only numbers for time, but AM/PM looks better…

Viewing 15 replies - 16 through 30 (of 31 total)
  • The topic ‘Date Picker problem’ is closed to new replies.