I have a conditional field in a metabox on a custom post type. It was working fine up to 0.9.3.6, but when I try to upgrade to 0.9.4 or higher, the conditional field will no longer appear.
Here is the relevant code:
piklist('field', array(
'type' => 'checkbox',
'field' => '_is_rescheduled_from',
'choices' => array(
'1' => 'Makeup Game – This game was rescheduled from another date.',
),
));
piklist('field', array(
'type' => 'select',
'field' => '_rescheduled_from',
'label' => 'From',
'conditions' => array(
array(
'field' => '_is_rescheduled_from',
'value' => '1',
),
),
'choices' => array('' => 'Select a Game...') + clm_games_get_cancelled( get_post_meta( get_the_id(), '_league_id', true) ),
));
Any idea what change in 0.9.4 would have caused this to stop working?