Support

Account

Home Forums General Issues Check Box Output Commas Reply To: Check Box Output Commas

  • The only thing that I can think of is that $field['value'] has already been formatted and is not the expected array. To test this modify the start of the filter to

    
    $value = $field['value'];
    return $value;
    

    and see what happens.