Support

Account

Home Forums General Issues Fieldtype Checkbox only gets one *unselected* value Reply To: Fieldtype Checkbox only gets one *unselected* value

  • Hi John

    Its a standard page with a custom page template.

    Its inside a post loop so i can start the page with text from the editor, and then fill in the ACF fields to add items to the sections on the page like the previous example.

    
    <?php
    while ( have_posts() ) : the_post();
    
    $active_services = get_field("aktive_ydelser");
    
    //var_dump($active_services);
    
    if( $active_services ): 
    ?>
    <p>Samarbejdet indeholder bla.</p>
    <ul>
    <?php foreach ( $active_services as $active_service): ?>
    <li class="active-service"><?php echo $active_service; ?></li>
    <?php endforeach; ?>
    </ul>
    <?php endif; 
    endwhile;
    ?>
    

    Is that enough context or?