Jump to content

Resimli üst menü yapımı


Recommended Posts

mümkündür buraya eklenen kategorinin id si sonuçta bir dosyadan alıyor örneğin block top menu modülü

 

kodları şöyle yapabilirsin

 

blocktopmenu.php

 

satır 714 de dikkat

if (!empty($is_intersected) && $id_category != '86' && $id_category != '87')
		{
			$this->_menu .= '<li '.$selected.'>';
			$this->_menu .= '<a href="'.Tools::HtmlEntitiesUTF8($category_link).'"><img src="/img/c/'.$id_category.'.jpg" width="150px" height="70px"/>'.$category->name.'</a>';

			if (count($children))
			{
				$this->_menu .= '<ul>';

				foreach ($children as $child)
					$this->getCategory((int)$child['id_category'], (int)$id_lang, (int)$child['id_shop']);

				$this->_menu .= '</ul>';
			}
			$this->_menu .= '</li>';
		}

örnek site

Edited by bera_ramazan (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...