Closed davegreenwp closed 1 year ago
Implements a Conditional Description feature that allows users to declare a conditional_desc field parameter containing an associative array, where the keys are the field values, and the values are the desired descriptions e.g.
conditional_desc
'choices' => array( 'red' => 'Red', 'green' => 'Green', 'blue' => 'Blue', ), 'conditional_desc' => array( 'red' => 'Description for value: red', 'green' => 'Description for value: green', 'blue' => 'Description for value: blue', ),
The value will change dynamically using JS on field change.
Implements a Conditional Description feature that allows users to declare a
conditional_desc
field parameter containing an associative array, where the keys are the field values, and the values are the desired descriptions e.g.The value will change dynamically using JS on field change.