My Profile
You can change info here
1: Frontend



Vendors set their bank or PayPal account to receive profit transfers from the admin.

2: Customize
2.1) Customize Payout Method

Hide "Bank" Option in payout method tab
Add the code below to the functions.php
file in your child theme
add_filter( 'el_profile_show_bank_info', '__return_false' );
Hide "Paypal" option in payout method tab
Add the code below to the functions.php
file in your 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
Last updated
Was this helpful?