Hi, I want to remove the page header html tag and output on the home page only. Is this possible? I found the code:
<?php if( !is_single() AND !is_home() OR is_singular('portfolio') ) { ?>
echo'';
Inside the header.php file on line 131. Could I add anything to this line which would remove the output on the home page. Any feedback greatly appreciated ;)
<?php if( !is_single() AND !is_home() OR is_singular('portfolio') ) { ?>
echo'';
Inside the header.php file on line 131. Could I add anything to this line which would remove the output on the home page. Any feedback greatly appreciated ;)