> For the complete documentation index, see [llms.txt](https://docs.gutenbricks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gutenbricks.com/resources/developer-api/filter-gutenbricks_bricks_theme_name.md).

# Filter: gutenbricks\_bricks\_theme\_name

GutenBricks plugin is initiated only when the Bricks theme is activated under the folder name `bricks.` If your theme folder name is different, GutenBricks will not start. This filter allows users to override that theme name so that GutenBricks still works.

```php
add_filter('gutenbricks_bricks_theme_name', function ($original_folder_name) {
  // Here the original_folder_name is 'bricks'
  // But my bricks theme is under a folder name 'bricks-awesome'
  return 'bricks-awesome'
});
```
