If page is main

Hi all,

I’ve got my installation here: http://nicktyson.me/eastjet

And I want to make it so that the picture slider ONLY shows up on the home page. There has to be a function I can use, I just can’t figure out what it is.

Anyone?

<?php
  if(MainController::$activeModule == 'yourmodule')
        { do stuff }
?>
1 Like

Thanks!

BTW: Whats the home page module?? Would that be frontpage_main?

<?php 
  if(MainController::$activeModule == 'frontpage') 
        { do stuff } 
?>
<?php if(MainController::$activeModule == 'frontpage') { do stuff } ?>

That one didn’t work. I tried, that, main, frontpage_main, & home with no luck.

Anyone?

Works for me, might want to try FRONTPAGE in caps, some servers complain about it.

Also to test that the function is there you can do ->

<?php echo MainController::$activeModule; ?>

That will show you what the controller is that you are on.