I have both "Meta Box Group" and "Meta Box Conditional Logic" installed, they both work as they should.
But what I now want is make fields appear based on the group 'count', so if a cetain group contains more than 3 items, make field X appear.
So for example
'visible' => array(
'when' => array(
array( 'meta_box_group', '>', 2 ),
),
)
Is something like that achievable in any way?
Thanks in advance!