Home / Admin / Localizing Date Picker Strings
Duplicate Snippet

Embed Snippet on Your Site

Localizing Date Picker Strings

This snippet is used to modify WPForms' default date picker locale

<10
Code Preview
php
<?php
/**
 * Load the date picker locale strings.
 *
 * @link https://wpforms.com/developers/localize-the-date-picker-strings/
 */
  
function wpf_dev_datepicker_locale( $forms ) {
   if ( true === wpforms_has_field_type( 'date-time', $forms, true )){
    wp_enqueue_script( 
        'wpforms-datepicker-locale', 
            'https://npmcdn.com/[email protected]/dist/l10n/es.js',
        array( 'wpforms-flatpickr' ), 
        null, 
        true
    );
 }
     
}
add_action( 'wpforms_frontend_js', 'wpf_dev_datepicker_locale', 10 );

Comments

Add a Comment