Add bellow code to functions.php file in child theme
- Choose profile tab
add_filter( 'el_manage_vendor_default_page', function(){ return 'profile'; } );
- Choose listing tab
add_filter( 'el_manage_vendor_default_page', function(){ return 'listing'; } );
- Choose package tab
add_filter( 'el_manage_vendor_default_page', function(){ return 'package'; } );
- Choose my booking tab
add_filter( 'el_manage_vendor_default_page', function(){ return 'mybookings'; } );
- Choose Create event tab
add_filter( 'el_manage_vendor_default_page', function(){ return 'create-event'; } );
- Choose my wishlist
add_filter( 'el_manage_vendor_default_page', function(){ return 'wishlist'; } );
2: Genreal
add_filter( 'el_manage_vendor_show_general', '__return_false' );
2.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/general.php
to
themes/meup-child/eventlist/vendor/general.php
3: My Listings
add_filter( 'el_manage_vendor_show_my_listing', '__return_false' );
3.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/events.php
to
themes/meup-child/eventlist/vendor/events.php
4: Create Event
add_filter( 'el_manage_vendor_show_create_event', '__return_false' );
4.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/edit-event.php
to
themes/meup-child/eventlist/vendor/edit-event.php
5: My Bookings
add_filter( 'el_manage_vendor_show_mybooking', '__return_false' );
5.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/mybookings.php
to
themes/meup-child/eventlist/vendor/mybookings.php
6: Tickets Received
Go to Events >> Settings >> Ticket Transfer >> Uncheck "Allow Transfer Tickets" setting.
6.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/tickets_received.php
to
themes/meup-child/eventlist/vendor/tickets_received.php
7: Package
Go to Events >> Settings >> Package >> Checked "Hide Package" setting.
7.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/package.php
to
themes/meup-child/eventlist/vendor/package.php
8: Wallet
Go to Events >> Settings >> Tax & Profit >> Manage Payout by >> Closed Event
8.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/wallet.php
to
themes/meup-child/eventlist/vendor/wallet.php
9: My Wishlist
add_filter( 'el_manage_vendor_show_wishlist', '__return_false' );
9.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/wishlist.php
to
themes/meup-child/eventlist/vendor/wishlist.php
10: My Profile
You have to customize it in child theme
Copy file
plugins/eventlist/templates/vendor/sidebar.php
to
themes/meup-child/eventlist/vendor/sidebar.php
10.2 Customize Template
Copy file
plugins/eventlist/templates/vendor/profile.php
to
themes/meup-child/eventlist/vendor/profile.php
11: Logout
You have to customize it in child theme
Copy file
plugins/eventlist/templates/vendor/sidebar.php
to
themes/meup-child/eventlist/vendor/sidebar.php