1: Frontend
The Admin will send Profit to bank or PayPal account of Vendor.
2: Customize
2.1) Customize Payout Method
Hide "Bank" Option in payout method tab
add bellow code to functions.php file in child theme
add_filter( 'el_profile_show_bank_info', '__return_false' );
Hide "Paypal" option in payout method tab
add bellow code to functions.php file in child theme
add_filter( 'el_profile_show_paypal', '__return_false' );
2.2) Customize in Bank tab
a) remove "Your bank account"
add_filter( 'el_profile_show_bank_info', '__return_false' );
b) Remove "Your paypal account"
add_filter( 'el_profile_show_paypal', '__return_false' );
c) Remove "Your stripe Account"
add_filter( 'el_profile_show_stripe', '__return_false' );
d) Remove "Bank" tab in My profile of vendor
add_filter( 'el_profile_show_bank', '__return_false' );
2.2) Customize file template
Copy file:
wp-content/plugins/eventlist/templates/vendor/profile.php
to
wp-content/themes/meup-child/eventlist/vendor/profile.php