Pin Up theme

Latest Reply from rebecca at 2014-12-27 12:12:37 Solution
I want to remove the logo on all but my home page where my slider is. How can I do this?
Hi!
It is impossible to remove logo but leave it on your home page. The theme doesn't provide such option. But I can suggest you to replace the code:
div id="logo">
<?php $SMTheme->block_logo();?>
</div>

with:
<?php if ( is_home() ) { ?>
<div id="logo">
<?php $SMTheme->block_logo();?>
</div>
<?php } ?>

in wp-content/themes/YOURTHEME/header.php to fix this.
Thanks thanks so much - this worked perfect !!!!!!!! Love the theme and appreciate all the support. I would give you folks an A+

Leave a reply

Add codeAdd image