/* add validation */ jQuery(document).ready(function( $ ) { $( '.acf_postbox .field, .form-group' ).each(function( index ) { if( $( this ).hasClass('required') == true ){ //$( this ).css('border','1px solid red'); $( this ).find('input').prop('required',true); /* PL LOCALE */ // $( this ).find('input').attr('oninvalid','this.setCustomValidity("To pole nie może być puste")'); } }); }); /* googlemap field Minimal version */ jQuery(document).ready(function( $ ) { $( '.acf-google-map .title' ).live('click',function(){ $('.acf-google-map .canvas').slideDown(); }); $( '.acf-google-map' ).live('mouseleave',function(){ $('.acf-google-map .canvas').delay(300).slideUp(); }); });