Support

Account

Home Forums General Issues String replace in a value Reply To: String replace in a value

  • get_field() for a checkbox field returns an array of values, not a string. the_field() outputs a comma separated sting because it is attempting to stringify the array.

    
    echo implode('<br />', get_field('my_field'));