I have two visibility conditions and I believe I followed the doc for an and condition: https://docs.metabox.io/extensions/meta-box-conditional-logic/#multiple-conditions
[
'name' => 'Show / hide partner association',
'id' => $prefix . 'control_partner_visibility',
'type' => 'switch',
'std' => 1,
'class' => 'rs_p2',
'tab' => 'page_2',
'desc' => 'Hide acknowledgement at bottom',
'visible' => [
[ 'partnership_summary', '=', 1 ],
[ 'select_partner', '!=', '' ],
],
],
But it does not hide! Cleared cache etc. Any clue whats going wrong?