jQuery(window).on('elementor/frontend/init', function() {
elementor.hooks.addAction('frontend/element_ready/form.default', function($scope) {
نبحث عن حقل التاريخ داخل الفورم
$scope.find('.elementor-field-type-date input').each(function() {
var input = this;
مفعّل على الحقل
if (input._flatpickr) {
// تغيير اللغة إلى الألمانية
input._flatpickr.set('locale', 'de');
// تغيير صيغة التاريخ إلى 31.12.2025 مثلاً
input._flatpickr.set('dateFormat', 'd.m.Y');
}
});
});
});
Zum Inhalt springen