Support

Account

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

  • Yes, I was thinking about the wrong field. You can set the default using

    
    add_filter('acf/prepare_field/type=url', 'url_add_default_prot', 20);
    url_add_default_prot($field) {
      $field['default_value'] = 'http://';
      return $field;
    }