Globally disable page titles in the Hello Elementor theme

Globally disable page titles in the Hello Elementor theme on child sites.

Snippet Type

Execute on Child Sites

Snippet

function ele_disable_page_title( $return ) {
   return false;
}
add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.