Jump to content
  • 0

Blocktopmenu title i description 1.6


mentalspot

Question

Witajcie, moduł blocktopmenu, potrzebuję zmienić top menu tak, zeby z podstron CMS wyśweitlał mi descriptiopn a nie tylko title.

 

Znalazłem w blocktopmenu.php :

case 'CMS':
    $selected = ($this->page_name == 'cms' && (Tools::getValue('id_cms') == $id)) ? ' class="sfHover"' : '';
    $cms = CMS::getLinks((int)$id_lang, array($id));
    if (count($cms))
        $this->_menu .= '<li'.$selected.'><a href="'.Tools::HtmlEntitiesUTF8($cms[0]['link']).'" title="'.Tools::safeOutput($cms[0]['meta_description']).'">'.Tools::safeOutput($cms[0]['meta_title']).'</a></li>'.PHP_EOL;
    break;

chodzi o częśc :

title="'.Tools::safeOutput($cms[0]['meta_description']).'"

Próbowałem juz na kilka sposbów, ale nie wiem jak zrobić żeby mi tu meta_description wyświetliło. Pewnie jakaś pierdoła.

 

$cms[1]['meta_description']

$cms['meta_description']

$cms->meta_description

 

Co robie źle ?

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

6 answers to this question

Recommended Posts

  • 0

dobra w szablonie ustawiam

$this->_menu .= '<li'.$selected.'><a href="'.Tools::HtmlEntitiesUTF8($cms[0]['link']).'" title="'.Tools::safeOutput($cms['meta_description']).'">'.Tools::safeOutput($cms[0]['meta_title']).'</a></li>'.PHP_EOL

czyszczę cache, wchodzę do menu i zapisuję je ze 2 razy, sprawdzam na stronie i title jest pusty. Czyli dalej nic :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...