Hello There,
Thanks for writing in! What you have in mind is possible with a little modification to the page template. Since you have your child theme active and ready, please follow 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/INTEGRITY/CONTENT-PAGE.PHP
// -----------------------------------------------------------------------------
// Standard page output for Integrity.
// =============================================================================
$disable_page_title = get_post_meta( get_the_ID(), '_x_entry_disable_page_title', true );
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class="entry-featured">
<?php x_featured_image(); ?>
</div>
<?php endif; ?>
<div class="entry-wrap">
<?php if ( is_singular() ) : ?>
<?php if ( $disable_page_title != 'on' || !is_page_template('template-layout-content-sidebar.php') ) : ?>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php endif; ?>
<?php else : ?>
<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 endif; ?>
<?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/x-child/framework/views/integrity/
You need to create the folder since it does not exist yet in your child theme.