My Profile

You can change info here

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' );

Customize Template of Profile in child theme

Copy file:
wp-content/plugins/eventlist/templates/vendor/profile.php
to
wp-content/themes/meup-child/eventlist/vendor/profile.php

Last updated