I added new field to add product and edit product page in dokan dashboard by override templates inside of my theme, is this a true method? or should be add new field with dokan action hook?
and another question is:
Save new field data with below action:
add_action( ‘dokan_process_product_meta’, ‘dokan_add_fields_save’ );
add_action( ‘dokan_product_updated’, ‘dokan_add_fields_save’ );
add_action( ‘dokan_new_product_added’, ‘dokan_add_fields_save’ );
which one is true or which one is wrong?