7 "contact date field not working properly

I installed the "Contact Form 7" plugin on the next WP blog http://torontomovers.net/, and I added a date field inside this form (the form is located under the slider). The problem was that the date field did not work in Firefox, IE and Safari, so I installed an additional plugin from this page http://wordpress.org/plugins/contact-form-7-datepicker/ . Now the date field works fine and shows the calendar when you click inside the date field, but the calendar style doesn't work.

Any idea how to solve this problem since I tried many things and nothing works.

Thank you

+5
source share
1 answer

Put this code in your functions.php theme

    add_filter( 'wpcf7_support_html5_fallback', '__return_true' );
+17
source

Source: https://habr.com/ru/post/1534031/


All Articles