📕
Meup - Marketplace Events WordPress Theme
  • READ THE FIRST
  • Global
    • Youtube Tutorials
    • Install Theme
    • Update Theme/Plugins
      • Automatic Update
      • Manual Update
    • Support Theme
  • Basic
    • Header Settings
    • Update Footer
    • Home Page
    • Theme Options
      • Typography
      • Layout Global
      • Header Global
      • Footer Global
      • Blog
      • Event
      • Venue
      • Author
      • Site Identity
  • Main Features
    • How to make money with Theme?
    • VENDORS FEATURES
      • READ THE FIRST
      • Package
      • Create Event
        • Basic
        • Ticket
          • Internal link - No Seat
          • Internal link - Simple Seat
          • Internal link - Map
          • Event Online (Virtual Online)
          • External Link
          • Customize Template
        • Calendar
        • Coupon
        • Staff member
        • Cancel booking
        • Extra Service
      • My Listings
      • Wallet
      • General
      • My Bookings
      • My Wishlist
      • My Profile
    • USER FEATURES
      • READ THE FIRST
      • My Bookings
      • My Wishlist
      • My Profile
    • ADMIN FEATURES
      • Create Event
      • Manage Event
      • Manage Packages
      • Manage Venues
      • Manage Categories
      • Manage State, City
      • Manage Custom Taxonomy
      • Manage Custom Checkout Fields
      • Manage all Bookings
      • Manage all Tickets
      • Report Sales
      • Report User
      • Cancel/Refund Booking
      • Manage Withdraw and Payout
        • Method 1
        • Method 2
    • Settings
      • General
      • Event
      • Package
      • Checkout
      • Cancel Booking
      • Mail
      • Tax & Profit
      • Role
      • PDF Invoice
      • Ticket Transfer
      • Date Format
    • Elements in page
      • Search Form
      • Search Half Map
      • Event Category
      • Event Slider
      • Location Event
      • Event Slideshow
      • Event Grid
  • Login/Register User
    • READ THE FIRST
    • Setup Login, Register
    • Customize Register User Form
    • Admin Approve Vendor
  • Scan QR code in ticket
    • READ THE FIRST
    • Via Mobile Phone
    • Via Application
      • Install Application
      • Use Application
      • Customize Application
    • Via a link
    • Note
  • Frontend
    • Change Slug event
    • Event Archive Template
    • Event Detail Template
    • Cart Event Page
    • Checkout page in WooComemrce
    • Author Page
    • Customize PDF Ticket
    • Disable Marketplace
    • Vendor Dashboard
    • Mail
    • Update Sharing Social
  • Other
    • Mail chimp setting
    • Google Map
    • Translation
    • Find Icons
  • FAQs
    • Can't Book Events
    • Cart Event Error
    • Admin will approve event before publish it.
    • Login before booking event
    • when i create events, there is not ''booking button'' but ''share button''
    • Get Token Instagram
    • The vendor submit event without register package
    • Search go to home page
Powered by GitBook
On this page
  • 1: My Listings Menu
  • 2: Manage an Event
  • 2.1) General Tab
  • 2.2) Manage Bookings
  • 2.3) Manage Tickets

Was this helpful?

  1. Main Features
  2. VENDORS FEATURES

My Listings

PreviousExtra ServiceNextWallet

Last updated 9 months ago

Was this helpful?

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

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

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

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.

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
Read here