Manage Sales, Tickets

1: Manage Events

a): Filter: All : Display all events Open: Only display events opened Closed: Only display events closed Publish: Only display events published (the guest can see it at site) Pending: Only display events which is waiting for the admin to approve (the guest can't see it at site) Trash: Display events in trash.

b): Total Tickets: tickets total sold / Tickets total of event

c): Manage Event: Click here to know more about Sales, Bookings, Tickets

Click Manage Event per event, you will see this image

Package: The event is using business package. This package made when you make a new event. Only admin can change this package for vendors.

Total before tax: The current total before of event

Total after tax: The current total after tax of event

Profit: The current profit of vendor

Commission: Default will hide in Vendor session. you can add filter to show it in vendor.

// Add bellow code in functions.php file in child theme
add_filter( 'el_vendor_view_commission', function (){ return true; } );

Tax: Tax of booking. Default will show in Vendor session. you can add filter to hide it in vendor.

// Add bellow code in functions.php file in child theme
add_filter( 'el_vendor_view_tax', function (){ return false; } );

Bookings: All bookings of event

Tickets: All tickets of event

Check In: The attendees check-in via APP

Change Max Ticket in any Date: The vendor can choose any date to change max number ticket in per ticket type.

Repost Sales: You can check sales at any time.

Customize Template of General Template

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

2: Manage Bookings

Click Bookings menu: The package of event has permission to check bookings and export bookings. Export Bookings: You can choose files to export bookings to csv file.

You can show/hide some column for vendor: Commission, Tax

// Add bellow code in functions.php file in child theme
add_filter( 'el_vendor_view_tax', function (){ return true; } );
add_filter( 'el_vendor_view_commission', function (){ return true; } );

Only display Completed Booking

add bellow code to functions.php file in child theme

add_filter( 'el_manage_bookings_show_status_vendor', function(){ return array( 'Completed' ); } );

Customize Template of "Bookings" template

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

3: Manage Tickets

Click Tickets menu: The package of event has permission to check tickets and export tickets. Export Tickets: You can choose files to export tickets to csv file.

Customize Template of "Tickets" template

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

4: Menu of Bookings, Tickets doesn't Display

If you don't see Bookings, Tickets here because your event registered with package that doesn't support Manage Bookings, Tickets.

So you can change Package of Event in backend. Please edit Event and change package

Last updated