1
raunharman
How to create Breadcrumb Menu
  • 2008/1/19 7:15

  • raunharman

  • Just popping in

  • Posts: 21

  • Since: 2007/12/24


I need to have breadbcrumb menu on some of my pages.
When a person clicks on the link in main menu, it will open sub-menu.
The sub-menu will have more links, which will have breadcrumb menu for navigation.
It will be like this

Main Menu
Link1
-->Link2


Content Page
Link2-->link2a

Please help

2
kris_fr
Re: How to create Breadcrumb Menu
  • 2008/1/19 8:13

  • kris_fr

  • Theme Designer

  • Posts: 1009

  • Since: 2005/12/31


hi,

Look in a module which has this functionality, like “pages”, “editorial” or “smartsection” for example.
If not in the template theme Morphogenesis, you have a breadcrumb.html file with this code:
le="color: #000000"><?php <{php}> $mod = $GLOBALS['xoopsModule']; $dirname = (isset($mod) ? $mod->getVar('dirname') :'system'); $GLOBALS['xoopsTpl']->assign( 'xoops_cmod', $dirname ); <{/php}> <div id="xo-breadcrumb"> <a href="<{xoAppUrl}>" title="<{$smarty.const.THEME_HOME_DESC}>"><{$smarty.const.THEME_HOME}></a> >> <a href="<{$xoops_url}>/modules/<{$xoops_cmod}>/"><{$xoops_cmod}></a> >> <{$xoops_pagetitle}> </div>


@++

3
raunharman
Re: How to create Breadcrumb Menu
  • 2008/1/19 11:14

  • raunharman

  • Just popping in

  • Posts: 21

  • Since: 2007/12/24


Can you provide the name of the module or the theme which supports this.

Thanks in advance