Open renderer.phtml from located in
app/design/frontend/your_package/your_theme/template/page/html/topmenu
and comment out the following code as mentioned below:
if (!empty($_hasChildren)) { $html .= '<ul class="level'. $childLevel .'">'; /* $html .= '<li class="level'. $nextChildLevel .' view-all">'; $html .= '<a class="level'. $nextChildLevel .'" href="'. $child->getUrl() .'">'; $html .= $this->__('View All') . ' ' . $this->escapeHtml($this->__($child->getName())); $html .= '</a>'; $html .= '</li>'; */ $html .= $this->render($child, $childrenWrapClass); $html .= '</ul>'; }
0 Comments