You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cehckbox
While converting to taxonomies all the CMB fields I found this one "Formally registered", that is a checkbox (convertible to yes/no field) but we should check how data is stored to see how it works.
$prefixwpg es _wpg_
array(
'name' => 'Formally registered',
'desc' => 'Select if the organization is officially registered and has legal status.',
'id' => '_wpg_formally_registered',
'type' => 'checkbox',
),
Predefined answers
Related question with this other type of answer with predefined CMB answers:
Datetime
¿Cómo convertir estos campos?
Quizás el cuando fue actualizado podemos usar el de wordpress por defecto.
Para los otros evaluar si necesitamos campo múltiple.
array(
'name' => 'Date of Data Entry',
'desc' => '',
'id' => $prefixwpg . 'date_data_entry',
'type' => 'text_date_timestamp'
),
array(
'name' => 'Date Data Updated',
'desc' => '',
'id' => $prefixwpg . 'date_data_updated',
'type' => 'text_date_timestamp' //TODO, if this is a multiple data entry, we can not use this type of metabox
),
The text was updated successfully, but these errors were encountered:
Cehckbox
While converting to taxonomies all the CMB fields I found this one "Formally registered", that is a checkbox (convertible to yes/no field) but we should check how data is stored to see how it works.
$prefixwpg
es_wpg_
Predefined answers
Related question with this other type of answer with predefined CMB answers:
or
Datetime
¿Cómo convertir estos campos?
Quizás el cuando fue actualizado podemos usar el de wordpress por defecto.
Para los otros evaluar si necesitamos campo múltiple.
The text was updated successfully, but these errors were encountered: