Hi There,
Thanks for writing in!
In renew, the page titles were displayed in the landmark header. Since you are using a custom header, the landmark header were replaced with the header instead. If you still want to display the page title while the custom header is on, please do the following steps below:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file
<?php
// =============================================================================
// VIEWS/RENEW/CONTENT-PAGE.PHP
// -----------------------------------------------------------------------------
// Standard page output for Renew.
// =============================================================================
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-wrap">
<?php if ( has_post_thumbnail() ) : ?>
<div class="entry-featured mtn">
<?php x_featured_image(); ?>
</div>
<?php endif; ?>
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php x_the_alternate_title(); ?></a>
</h2>
</header>
<?php x_get_view( 'global', '_content' ); ?>
</div>
</article>
3] Save the file named as content-page.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/pro-child/framework/views/renew/
Hope this helps. Please let us know how it goes.
Thanks