HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
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 } ?>