Im not able to get a value from true/false field… with var_dump i get returned NULL
My complete code
if ( get_field( 'shoponline' ) == true )
{
get_template_part('templates/content', 'page');
echo "true";
}
else {
// ( get_field( 'grundshopoffline' ) );
the_field('grundshopoffline', 14477);
echo "<br> False" ;
}