Hi @eugyenoch,
Modifying the Bank Form of Dokan is unavailable as a default feature of Dokan right now. You will need to go through proper customization to achieve this. You can use dokan_bank_payment_required_fields this hook to achieve your goal. Please take a look at the below-mentioned code snippet and add it to your child theme’s functions.php file or a code snippet plugin like this one.
#-- Remove Bank Payment Required Fields --#
function remove_bank_required_fields( $fields ){
unset( $fields['routing_number'] );
return $fields;
}
add_filter( 'dokan_bank_payment_required_fields', 'remove_bank_required_fields' );
I hope this will help. Thanks!
Thank you very much sir, your solution worked as expected.
Hi @eugyenoch,
The pleasure is all mine to get to know that it helped. As the purpose of this topic has been served, I am marking this as resolved. Feel free to open a new one if you have any further queries or issues.
Thanks!