Support

Account

Home Forums General Issues Checkbox and PHP if… Reply To: Checkbox and PHP if…

  • Hi @mikosworld

    You can use this code to test the value. That way you know what you are working with:

    
    <?php 
    
    $lang = get_field('language');
    
    echo '<pre>';
    	var_dump( $lang );
    echo '</pre>';
    die;
    
    ?>