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?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.