Jump to content

Quitar links de categorias padre


luiso8869

Recommended Posts

Hola a todos, me gustaria saber si sabeis como puedo quitar, en el menu horizontal superior, los links de los menus que tienen submenus desplegables, es decir, que no se pueda clickar en ese menu, solo en los submenus correspondientes... qué archivo tendria que modificar...?

 

Gracias. 

Link to comment
Share on other sites

No estoy 100% seguro, pero puedes probar con esto a ver si te funciona...

 

En el archivo /modules/blocktopmenu/blocktopmenu.php, sobre la linea 471, aparece este codigo:

case 'CMS_CAT':
					$category = new CMSCategory((int)$id, (int)$id_lang);
					if (count($category))
					{
						$this->_menu .= '<li><a href="'.Tools::HtmlEntitiesUTF8($category->getLink()).'" title="'.$category->name.'">'.$category->name.'</a>';
						$this->getCMSMenuItems($category->id);
						$this->_menu .= '</li>'.PHP_EOL;
					}
					break;

				// Case to handle the option to show all Manufacturers

intenta sustituirlo por esto:

case 'CMS_CAT':
					$category = new CMSCategory((int)$id, (int)$id_lang);
					if (count($category))
					{
						$this->_menu .= '<li>'.$category->name;
						$this->getCMSMenuItems($category->id);
						$this->_menu .= '</li>'.PHP_EOL;
					}
					break;

				// Case to handle the option to show all Manufacturers

Nos cuentas si funciono!! Saludos

Link to comment
Share on other sites

  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...