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.

Custom Checkout Fields: You can choose display all or special fields in booking form.

Image: Choose features image of a category.

Edit a category to upload image

2: Display Category at Frontend

Add Catetory to menu.

If title only display 3 words, 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

Last updated