Thread: If Home?
View Single Post
  #4  
Old 04-01-2015, 04:45 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: If Home?

There is no template variable that could say whether it is the home page, or not.
However, doing this check is a somewhat easy task.

In your custom module/theme decorate \XLite\Controller\Customer\ACustomer class and add the following method:
Code:
public function isHomePage() { return 'main' === $this->getTarget(); }

Now you can use this in any storefront template as follows (any of the following will work):

1.
Code:
<div IF="isHomePage()">....your code goes there...</div>

2.
Code:
{if:isHomePage()} ....your code goes there... {end:}
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote