79669164

Date: 2025-06-17 13:28:34
Score: 1
Natty:
Report link

Yes! Elementor uses Flatpickr under the hood, so you can override its default date format with a bit of JS. For example, add this in your theme’s functions.php or via Elementor → Custom Code:

add_action('wp_footer', function() { ?>
  <script>
    jQuery(document).ready(function($) {
      setTimeout(function(){
        $('.flatpickr-input').each(function(){
          flatpickr(this).set('dateFormat','d/m/Y');
        });
      }, 1000);
    });
  </script>
<?php });

After the new update you also need to make one change in the settings as shown here: https://youtu.be/z3Dk0GzXIHA

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kashif Mahmood