/*
Theme Name:		 Vault Child
Theme URI:		 https://vault.uicore.co/
Description:	 Child theme for Vault - Multi-Purpose Elementor WordPress Theme
Author:			 UiCore
Author URI:		 https://uicore.co
Template:		 vault
Version:		 1.0.0
Text Domain:	 vault
*/


/*
    Add your custom styles here
*/

add_filter( 'ucore_page_title', 'disable_page_title_for_template' );
function disable_page_title_for_template( $title ) {
    if ( is_page_template( 'single.php' ) ) {
        return false;
    }
    return $title;
}