2.0.10 - I want to add a banner for certain pages. What PHP-if call can I use to only show it on the home, boards, and topic pages. I.e. if topic/home/board = echo 'banner';
To make your life easier, you can consider installing SimpleAds (http://custom.simplemachines.org/mods/index.php?mod=2557) and use that to display a banner (doesn't have to be an ad!) on certain actions/boards/topics, and it has customizable locations to put the banner as well. :)
BTW, the if would be
if (!isset($_REQUEST['action']) || !empty($topic) || !empty($board))
Don't forget to globalize $board and $topic
Thanks guys, from the given information I should be able to get it sorted. Thanks again!