Support

Account

Home Forums ACF PRO Extending the URL field. Reply To: Extending the URL field.

  • I’ve figured out that I need to use the following code…

    However, while the code runs on new fields added via repeaters, it does not run on fields during the initial load.

    I’ve opened a new thread more in line with the issue I am facing…

    https://support.advancedcustomfields.com/forums/topic/acf-javascript-api-initial-new_field-filters-not-working/

    acf.addAction('new_field/type=url', function(field){
          field.$el.find('input[type=url]').on('blur', function(e){
            var val = $(this).val();
            if((!(val.indexOf('://') !== -1)) && (val.length !== 0)){
              $(this).val('http://' + val);
            }
          });
        });