Hi Michael,
To achieve that, copy all your templates to your child theme then add the code below to those files.
eg. copy wp-content/themes/x/framework/views/integrity/template-blank-1.php to wp-content/themes/x-child/framework/views/integrity/template-blank-1.php
<?php if ( $disable_page_title != 'on' ) : ?>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php endif; ?>
You may add it before this line
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
Hope that helps.