View Single Post
  #2  
Old 11-21-2016, 09:26 PM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

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

Default Re: Remove featured products from all pages except home page

You try to remove one of core templates that is used in multiple places. This is wrong.

Instead, you should create a custom module that "decorates" the getAllowedTargets() method in \XLite\Module\CDev\FeaturedProducts\View\Customer\ FeaturedProducts class as follows:
PHP Code:
// ...
    /**
     * Return list of targets allowed for this widget
     *
     * @return array
     */
    
public static function getAllowedTargets()
    {
        return array(
'main');
    }
// ... 

This will make the widget appear on pages rendered by the "main" controller only - and this controller renders only the home page.
__________________
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