Manage Categories

The vendor will choose category when make new event at frontend.

1: Add New Categoy:

Events >> Categories >> Add New

Category Color: This color is background of category at frontend.

Edit a category to upload image

You can choose any Custom Check Field to display in Booking Form of event.

2: Display Category at Frontend

Add Catetory to menu.

If title only display 3 workds, you can display event title more words by:

Add the code bellow to functions.php in child theme. Change value 120 to your number words.

add_filter( 'el_title_count_two', function(){ return 120; } );
add_filter( 'el_title_count_three', function(){ return 120; } );

3: Choose Category when make new event

4: Customize template of Category Page

a) Remove/Customize search form - Read here

b) Change layout of list event

Go to Events >> Settings >> Event >> Archive Event Settings

c) Customize layout in child theme

Copy code from Plugins/eventlist/templates/archive-event.php to Themes/meup-child/eventlist/archive-event.php

5: Customize Search in Event Category page

You can read here Customize search form in category, archive event page

Last updated