Support

Account

Home Forums Front-end Issues Hidden-by-conditional-logic get posted and create problems. Reply To: Hidden-by-conditional-logic get posted and create problems.

  • You need to check the radio field on the front end, not the conditional fields. This would be the case whether or not the value is saved in the admin.

    
    if (get_field('car-model') == 'acura') {
      echo the_field('car-model-acura'); 
    } elseif (get_field('car-model') == 'aston') {
      echo the_field('car-model-aston');
    }