Hello, I'm wondering if it's possible to make radio button options conditionally visible rather than showing or hiding the entire set of the radio button options. See below. Is something like this possible? Thanks.
// RADIO - COLOR SCHEME
array(
'name' => __( 'Color Scheme', 'continuum' ),
'id' => "{$prefix}section_1_color_radio",
'type' => 'radio',
'options' => array(
array(
'name' => 'White',
'value' => 'white-no-border',
'visible' => array( 'box', '=', 'full-width' )//display this option only if the box is full width.
),
'white-with-border' => __( 'White With Border', 'continuum' ),
'light-grey' => __( 'Light Grey', 'continuum' )
),
),