Viewing 41 to 41 of 41 items
Archive | Front-end RSS feed for this section

Check current page is home page or not

Using the code below to check current page is home page or not. <?php if( Mage::getSingleton('cms/page')->getIdentifier() == 'home' && Mage::app()->getFrontController()->getRequest()->getRouteName() == 'cms' ) : ?> //insert your code here <?php endif; ?>

0