View Single Post
  #1  
Old 10-14-2014, 11:54 AM
 
Phil Richman Phil Richman is offline
 

Advanced Member
  
Join Date: May 2012
Posts: 94
 

Default Make Sidebar Item only show on the home page.

I created a simple mod for xcart 5 that adds a menu item to the sidebar called Quick Links. Everything works fine with the mod. It shows up in the side bar just like it is supposed to, but I want it to only show on the home page. Where as now it shows on every page with the sidebar. What is the easiest way to accomplish this?


Below is my QuickLinks.php


<?php

namespace XLite\Module\Pmall\QuickLinks\View;

/**
* @ListChild (list="sidebar.first", zone="customer", weight="101")
*/

class QuickLinks extends \XLite\View\SideBarBox
{
protected function getHead()
{
return 'Quick Links';
}


protected function getDir()
{
return 'modules/Pmall/QuickLinks/menu';
}
}
__________________
Ver 5.2.6
Reply With Quote