Plugin Author
Awais
(@awais300)
Hi,
I’ve implemented that functionality; now, when you alter the site language (accessible via WP Dashboard -> Settings -> General -> Site Language), it will correspondingly update the language displayed in the calendar/Datetime-picker.
If you just want to display the datepicker you can use below hook to hide the timepicker.
// Remove time picker.
add_filter('gf_awp_calendar_timepicker', '__return_false');
Code goes in function.php file of the active child theme (or active theme).
Hi, and thank you for the plugin.
I have a site in multiple languages (with WPML plugin), the default language is spanish, but the date picker is in English. Is there a way to specify the correct language in this case?