Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Jens Vandeput

Forum Replies Created

Viewing 1 post (of 1 total)
  • Jens Vandeput in reply to:
    Filter default values
    #126699

    Thanks for the link.

    I fixed it the following way:

    function filter_function_name($input_object, $sfid) {
      if($input_object['name']=='xxx') {
        $input_object['defaults'] = array("yyy");
      }
      return $input_object;
    }
    add_filter('sf_input_object_pre', 'filter_function_name', 10, 2);
Viewing 1 post (of 1 total)