After importing custom fields from a .dat file all the radio and checkbox fields that had value:label are showing value:label as the label and the array index as value. The code that is generated has gone from:
options' => array(
'yes' => esc_html__( 'yes', 'text-domain' ),
'no' => esc_html__( 'no', 'text-domain' ),
)
to this:
options' => array(
0 => esc_html__( 'yes:yes', 'text-domain' ),
1 => esc_html__( 'no:no', 'text-domain' ),
)
Even when creating a new field this is an issue. Even when creating completely new custom field meta-box post type this is an issue.
Meta Box Builder Version 3.3.2