- This topic has 0 replies, 1 voice, and was last updated 1 year, 9 months ago by .
-
Topic
-
Hi support i am using the conditional logic extension on radio type field it not hide the respective fields please check.
array( 'id' => 'section_select', 'name' => esc_html__( 'Section' ), 'type' => 'radio', 'required' => true, 'class' => 'col-md-8', 'placeholder' => esc_html__( 'Select Section' ), 'options' => array( 'Individual' => 'Individual', 'Companies' => 'Companies', 'Vip' => 'Vip', ), ),
and the fields which i want to hide when user click on ‘Companies’ => ‘Companies’, radio option.
array( 'id' => 'quantity', 'type' => 'number', 'name' => esc_html__( 'Quantity' ), 'class' => 'col-md-6', 'placeholder' => esc_html__( 'Quantity'), 'hidden' => array( 'section_select', '!=', 'Companies' ) ),
Thanks
- You must be logged in to reply to this topic.