File: /mnt/data/truelysell-wp-demo/wp-content/themes/truelysell/header-no-bradcrumb.php
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package truelysell
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div id="page" class="main-wrapper">
<?php
$header_style = truelysell_fl_framework_getoptions('header_style');
?>
<?php
if (is_page_template('template-dashboard-provider.php')) {
echo 'test';
}?>
<?php if($header_style=='style1') { ?>
<?php get_template_part( 'template-parts/header/header', 'style-one' ); ?>
<?php } else if($header_style=='style2') { ?>
<?php get_template_part( 'template-parts/header/header', 'style-two' ); ?>
<?php } else { ?>
<?php get_template_part( 'template-parts/header/header', 'style-one' ); ?>
<?php } ?>