Event

1: Settings

Go to Event >> Settings

2: Create Category

Go to Event >> Category >> Add New

3: Create event

Go to Event >> All Events >> Add New

Templates: you can choose Global template or other template that build from Elementor.

4: Event Elements in Elementor

4.1) Events

4.2) Events Slide

4.3) Event Filter Ajax

4.4) Search Ajax

4.5) Simple Calendar

When you click Blue Date, the system will display to detail of event.

4.6) Full Calendar

5: Create Event Template with Elementor

Go to Templates >> Choose or edit a template

Go to Event >> Settings >> Event Settings tab >> Template: choose single event

and this is Event detail at frontend

6: FAQs

1: Remove "Archive" text in Archvie page

Add bellow code to functions.php file in child theme

function remove_archive_title_prefix($title) {
    if (is_post_type_archive('event')) { // Replace 'your_custom_post_type' with your actual post type name
        $title = post_type_archive_title('', false); // This removes the "Archives:" prefix
    }
    return $title;
}
add_filter('get_the_archive_title', 'remove_archive_title_prefix');

Last updated