Staff member
1: Use Staff member
You can add a username to scan QR Code ticket via APP Mobile.
User Name: You must register a new account or use your existing account on the website. The user name is the account name you use to log in

2: Customize field for this tab
2.1: Customize in template
Ccopy file
wp-content/plugins/eventlist/templates/vendor/__edit-event-api-key.php
to
wp-content/themes/meup-child/eventlist/vendor/__edit-event-api-key.php
and edit code in that file
2.2: Customize by Hooks
a) Remove "Staff member" tab when making a new event
You can add the code below to the functions.php
file in your child theme.
add_filter( 'el_create_event_show_member_tab', function(){ return false; } );
Last updated
Was this helpful?