> For the complete documentation index, see [llms.txt](https://ovatheme.gitbook.io/fullevent/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ovatheme.gitbook.io/fullevent/troubleshoot.md).

# Troubleshoot

Some case Header, Footer doesn't load in Archive/Single Page when your theme use some builder. Try add bellow filter to functions.php file in theme/child-theme

```

add_filter( 'event_priority_template_include', function(){ return 1000; } );

// If above code doesn't work, try add bellow code
add_filter( 'event_priority_template_include', function(){ return 1; } );

```
