This topic has 3 replies, 2 voices, and was last updated 12 years, 8 months ago by FailProof.
Viewing 4 posts - 1 through 4 (of 4 total)
Hi Guys,
We just purchased and installed the theme but for whatever reason, we are not able to get the header to change style. I have your support ID added to Skype (I will message you). When you are available, perhaps we can connect and you can take a look at it.
Thanks
Open the header.php file and replace the following code
Find Code
$headerstyle = get_option('atp_headerstyle','default');
if ( is_page( 6779 ) ) {
get_template_part('headers/header','style1');
}
elseif ( is_page( 6767 ) ) {
get_template_part('headers/header','style2');
}
elseif ( is_page( 6769 ) ) {
get_template_part('headers/header','style3');
}
elseif ( is_page( 6775 ) ) {
get_template_part('headers/header','style4');
}
else {
get_template_part('headers/header','style2');
}
Replace Code
$headerstyle = get_option('atp_headerstyle','default');
switch($headerstyle)
{
case 'headerstyle1':
get_template_part('headers/header','style1');
break;
case 'headerstyle2':
get_template_part('headers/header','style2');
break;
case 'headerstyle3':
get_template_part('headers/header','style3');
break;
case 'headerstyle4':
get_template_part('headers/header','style4');
break;
case 'default':
get_template_part('headers/header','default');
break;
default:
get_template_part('headers/header','default');
}
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.