My Listings

1: My Listings Menu

From Dashboard click "My Listings"

a) Update Bulk Action

You can choose multiple events for some actions: Publish, Pending, Trash

b) Filter Link Dropdown 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.

c) Search Event Form

Support find events with many options:

  • Name

  • Category

  • Sort by: ID, Title, Start Date

  • Sort Order: Ascending, Descending

2: Manage an Event

From My Listing Menu >> Choose an event and click "Manage Event" button

2.1) General Tab

a) Some Information

  • 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; } );
  • Coupon: Total coupon used when booking

  • Bookings: All bookings of event

  • Tickets: All tickets of event

  • Check In: The attendees check-in via APP

b) Change Max Ticket in any Date

The vendor can choose any date to change max number ticket in per ticket type.

c) Repost Sales:

You can check sales at any time.

d) 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.2) Manage Bookings

If you don't see this "Bookings" menu your event assigned a membership package doesn't support manage bookings. You can edit membership package to choose again package. Read here

a) Export Bookings:

You can choose files to export bookings to csv file.

b) Customize

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

2.3) Manage Tickets

If you don't see this "Tickets" menu your event assigned a membership package doesn't support manage Tickets. You can edit membership package to choose again package. Read here

a) Download and Send Tickets

The Admin/Vendor can Download PDF ticket and Send any Ticket to Customer

b) Change Status of Tickets

The Admin/Vendor can change Tickets Status as: Check-in or Un-checkin

c) Export Tickets

Export tickets to CSV file

d) Download tickets

Download all tickets in a zip file. When you unzip file, you will see all PDF Tickets.

e) Create Tickets

You can create tickets for any event and any ticket type.

  • The Admin can create tickets for any events.

  • The Vendor only can create tickets for their events.

f) 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

Last updated

Was this helpful?