> For the complete documentation index, see [llms.txt](https://ova-themes.gitbook.io/podover/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ova-themes.gitbook.io/podover/main-features/event.md).

# Event

## 1: Settings

Go to Event >> Settings

![](/files/aTdfgYY140CnMgeov1rl)

![](/files/jvrh3SVs57wyuKwWrQEB)

## 2: Create Category

Go to Event >> Category >> Add New

![](/files/IC2wQCHWE5XBu9Z2FF49)

## 3: Create event

Go to Event >> All Events >> Add New

**Templates**: you can choose Global template or [other template that build from Elementor.](#id-4-create-event-template)

![](/files/7wWBLTJAaoe5J7qyuXMu)

![](/files/UXLwTG31DAEiDLVZvisl)

![](/files/KkOkfSb291zfDq0f9RJo)

![](/files/Xdne0DrCeogQeBF3yw7C)

## 4: Event Elements in Elementor

### 4.1) Events&#x20;

<figure><img src="/files/OvFNt0jriJZkryZji3yo" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/00uXesg48douWOkEjdJG" alt=""><figcaption></figcaption></figure>

### 4.2) Events Slide

<div><figure><img src="/files/rsNyRirnooqEDWUUkCPA" alt=""><figcaption></figcaption></figure> <figure><img src="/files/p3HDfXzbLCwybDK4seBH" alt=""><figcaption></figcaption></figure></div>

<figure><img src="/files/lctX6BIKnt8jfeAsD3Zr" alt=""><figcaption></figcaption></figure>

### 4.3) Event Filter Ajax

<div><figure><img src="/files/X6Ty7oV59sUqDabNuX1g" alt=""><figcaption></figcaption></figure> <figure><img src="/files/o7sHtRG3t6J6Cbw1Zg5I" alt=""><figcaption></figcaption></figure></div>

<div><figure><img src="/files/4mkGQff33MgXAshFnEng" alt=""><figcaption></figcaption></figure> <figure><img src="/files/uxnsZlNeIKqWbJ5ku9PI" alt=""><figcaption></figcaption></figure></div>

### 4.4) Search Ajax

<figure><img src="/files/Xo4bigPFmqCjtvluzyf4" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/VRDTFWLB6aU6IYprhS6W" alt=""><figcaption></figcaption></figure>

### 4.5) Simple Calendar

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

<figure><img src="/files/RrdYAq5EvvfHVa6agvGt" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/Czfz0oq7AVoay9oJmATC" alt=""><figcaption></figcaption></figure>

### 4.6) Full Calendar

<figure><img src="/files/mZebohFyOCLOG03dg7AL" alt=""><figcaption></figcaption></figure>

## 5: Create Event Template with Elementor

Go to Templates >> Choose or edit a template

![](/files/aY7GxTNUmninfs7PvDuZ)

![](/files/cxK9oq0kJnZPWxD8gtIw)

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

![](/files/Irt52seq7FYwyPNQoTnh)

and this is Event detail at frontend

![](/files/8q9in3CoDffaD856LSV6)

## 6: FAQs

### 1: Remove "Archive" text in Archvie page

<figure><img src="/files/Rd9PY1sQMyGHoA6TUbj4" alt=""><figcaption></figcaption></figure>

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');
```
