How to display the title and the featured image on pages built by the page builder

By default, the page title and featured image don't appear on the pages built by the page builders, to display them on those pages, add this code to your child theme’s  functions.php file or via a plugin that allows custom functions to be added, such as the  Code snippets plugin. Avoid adding custom code directly to your parent theme’s  functions.php file, as this will be wiped entirely when you update the theme.

add_action( 'TieLabs/Builder/before', 'jannah_custom_builder_featured_area' );
function jannah_custom_builder_featured_area(){
	echo '<div id="page-builder-featured-area" class="container">';
		do_action( 'TieLabs/before_single_post_title' );
	echo '</div>';
}