I'm trying to use the conditional logic extension with tabs, I would assume that this is supposed to work
'tabs' => array(
'dish' => array(
'label' => esc_html__( 'Item Type and Details', $plugin_name ),
'icon' => 'fa fa-cutlery', // Font Awesome
),
'nutrient-content' => array(
'label' => esc_html__( 'Nutrient Content', $plugin_name ),
'icon' => 'dashicons-screenoptions',
'visible' => array( "{$prefix}menu_item_type", '=', 'item_type_a_la_carte' ),
),
),
so essentially, the tab 'nutrien-content' should be only visible if menu_item_type
is item_type_a_la_carte
but the condition is not applied. Is tabs supporting conditional logic extension?