Hello,
Is there some option to add Custom Meta Fields to taxonomies on “Add New page”.
I have try with this (../parts/terms/fields-taxonomy.php):
/*
Title: Radio Fields
Order: 10
New: true
Taxonomy: demo_addon
Flow: test_demo
*/
piklist('field', array(
'type' => 'radio',
'field' => 'radio',
'label' => 'Radio',
'value' => 'third',
'choices' => array(
'first' => First Choice',
'second' => 'Second Choice',
'third' => 'Third Choice',
)
));