Add this code into function.php
of your child theme.
Please make all changes to the child theme files, and do not add the code directly to the theme files, otherwise after updating the theme your fixes will be lost
function.php
// ------------------------------------------------------
// Groovy Menu plugin integration
// ------------------------------------------------------
if ( ! function_exists( 'gm_child_show_groovy_menu' ) ) {
function gm_child_show_groovy_menu() {
if ( function_exists( 'groovy_menu' ) ) {
groovy_menu();
}
}
}
add_action( 'wp_body_open', 'gm_child_show_groovy_menu', 1 );
Note: You can find the child theme for the Hello Elementor theme in the
Groovy Menu > Integration section