Hide page titles globally

August 15, 2019

Table of Contents

Hello Elementor theme only!!

Add the following code to your child theme’s functions.php file:

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