Just find solution:
Here is how I made it work :
1) Enable WCF7 fallback but putting this code snippet in your theme functions.php file
add_filter( ‘wpcf7_support_html5_fallback’, ‘__return_true’ );
2) Fix the bug by putting this code snippet in your theme functions.php file, or by editing you theme CSS if you know how to :
add_action(‘wp_head’, ‘replacethiswithyourthemename_wcf7_datepickerfix’);
function replacethiswithyourthemename_wcf7_datepickerfix(){
?><style>#ui-datepicker-div {z-index:99!important;}</style><?php
}
https://stackoverflow.com/questions/34131644/datepicker-of-cf7-not-working-in-firefox/45281847#45281847
It’s working well
-
This reply was modified 7 years, 3 months ago by nhantam.