Open fembuelita opened 8 years ago
Hi, if you do this fix you'll get php warnings as in
delete_term_meta( $term_id, $field );
$field
is an array and you should pass a string
I changed it to
delete_term_meta( $term_id, $field['id']);
And got no more warnings now.
Simple iterate over each field to delete each term individually.