title: "Register Elementor Theme Locations" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Hello Elementor Theme - Src - Repos
Register Elementor Theme Locations
The theme registers Elementor theme locations. Developers can override this using a filter hook in a child-theme.
Hook Details
- Hook Type: Filter Hook
- Hook Name:
hello_elementor_register_elementor_locations - Default Value:
true
The hook controls whether the theme should register Elementor theme locations. By default it's set to true, however developers can prevent the theme from registering Elementor theme locations.
Usage
To prevent the theme from registering Elementor theme locations, use the following hook in a child-theme functions.php file:
add_filter( 'hello_elementor_register_elementor_locations', '__return_false' );