Page 1 of 1

How to identify if is Home Page?

Posted: Tue Nov 06, 2012 2:27 am
by Gui Siani
I need to identify with a condition if the page where I'm is the Home.

I want to use a function that needs to affect just the Home page.

How can I do this on OC 1.5.3.1?

Ty!

Re: How to identify if is Home Page?

Posted: Tue Nov 06, 2012 3:02 am
by Gui Siani
I found a solution using this:

Code: Select all

if(!isset($this->request->get['route']) || $this->request->get['route'] == 'common/home') { }