<em>@dasschwing 171021 wrote:</em><blockquote>Hello All! Hope things are going well for you!
I am having a little bit of an issue, I am not too gifted with PHP, but I was wondering how to reverse a couple of lines of code.
[PHP]
<?php if(!$tmpTools->isFrontPage()) : ?>
<div id=”blah”>
Blah Blah Blah
</div>
<?php endif ; ?>
[/PHP]
I want something to show only on the front page. And not via module or front page management.
Any help on this would be greatly appreciated!
Thanks!</blockquote>
by removing the ! in front of $tmpTools
<?php if($tmpTools->isFrontPage()) : ?>
<div id="blah">
Blah Blah Blah
</div>
<?php endif ; ?>