Categories
The vendor will choose category when make new event at frontend.
1: Add a New Category
Go to: Events >> Categories >> Add New
Category Color: This color will be used as the background for the category on the frontend
Custom Checkout Fields: You can choose to display all or special fields in booking form. To add a new custom checkout field, Read here for more details

Image: Choose featured image for a category. To upload featured image for a category, choose the category >> click edit button >> go to image tab: click "Add image" button

2: Display Categories on the Frontend
Add Category to menu
Go to Appearance >> Menus


If the event titles only display three words, you can show more words by adding the code below to the functions.php
file in your child theme. Change the value 120
to the number of words you want.
add_filter( 'el_title_count_two', function(){ return 120; } );
add_filter( 'el_title_count_three', function(){ return 120; } );
3: Choose a Category When Making a New Event
Go to Vendor Dashboard >> Create Event >> Basic

4: Customize the template of the Category Page
a) Remove/Customize search form
b) Change layout of event listing page
Read here for more details
c) Customize layout in child theme
Copy code from
Plugins/eventlist/templates/archive-event.php
to
Themes/meup-child/eventlist/archive-event.php
Last updated
Was this helpful?