Support

Account

Home Forums Front-end Issues Displaying Checkbox Values gives Error Reply To: Displaying Checkbox Values gives Error

  • Ah. I figured it out. I was trying to display the checkbox values from a custom taxonomy on the taxonomy page. My code ended up looking like this.

    
    $queried_object = get_queried_object();
    $Skills = get_field('skills', $queried_object);
    echo implode(', ', $Skills);
    

    Haha man, that was driving me crazy.