[ad_1]
[ad_2]
Iam struggling with removing this damn page title. I want to remove all my page titles. Can anyone point me to the right direction?
Copyright © 2020 - 2022, Project DMC - WordPress Tutorials for Beginners- All Rights Reserved. Privacy Policy
Not sure about the page you shared. Anyway, there are more than one method to remove page titles. As you said, you wish to remove titles from all pages (not posts), then you can do this using PHP.
Add the following code in your **child theme’s** `functions.php` file
function remove_all_page_titles( $title, $id ) {
if( is_page()){
return false;
}
return $title;
}
What page builder you using? Elementor might have separate setting. Also you can find relevant setting in appearance> customize