Hi There,
Thank you for writing in, so the site is in Renew stack (I thought it was Integrity). Renew stack does not output page titles when using the default templates, It does however have the page title on the Landmark section when you’re using a Blank template. Landmark section is inside the Header/Masthead so if you’re using a Custom Header that Landmark won’t show either.
You can add this on your child theme’s functions.php file to show a page title.
/*Adding title to renew pages*/
function add_title() {
if(is_singular('page')) { ?>
<header class="entry-header mbm">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php }
}
add_action( 'x_before_the_content_begin', 'add_title', 10 );
Hope this shed some lights,
Cheers!