rafaelstz
6/20/2015 - 1:49 AM

getIsHomePage has a bug in it. It does not return true if you have get parameters in it. For example if you cal it in example.com/?a=1 it wi

getIsHomePage has a bug in it. It does not return true if you have get parameters in it. For example if you cal it in example.com/?a=1 it will return false. Instead of getIsHomepage use this:

  $action = Mage::app()->getFrontController()->getAction()->getFullActionName();
  if ($action == 'cms_index_index') {
      //your are on the homepage
  }
  else {
      //not on homepage
  }