Hi there,
Thanks for writing in.
Instead of modifying the templates and codes directly, you could use a shortcode within the header. Example, let’s say you have this code in your child theme’s functions.php
add_shortcode('company_header_element', 'company_header_element');
function company_header_element ( $atts ) {
switch ( $company ) {
case "HP" : return "HP Company"; break;
case "Apple" : return "HP Company"; break;
}
}
add_shortcode('product_header_element', 'product_header_element');
function product_header_element ( $atts ) {
switch ( $company ) {
case "iphone" : return "iPhone"; break;
case "note 2" : return "Note 2"; break;
}
}
Then you can simply assign one single header with 2 bars, and each bar has text element where the shortcodes will be added.
[company_header_element]
[product_header_element]
If you’re creating a complete set of header instead of just displaying text, then you may try it like this
case "HP" : ob_start(); ?>
<h1>HP Copmany</h1>
<img src="company_logo.jpg">
<?php return ob_get_clean(); break;
You can follow the structure you like while still using the Pro header as the wrapper, the good thing is you can assign them. The output depends on your coding, the alignment of logo, address, and phone number is up to you 
Thanks!