The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
Menu Question - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16) +--- Thread: Menu Question (/showthread.php?tid=2457) |
Menu Question - PMB - 2011-12-04 Where is get_navigation(return_page_slug()) Is defined ? My menu requires a span tag to work properly. Default GetSimple Code: <li class="current index"><a href="http://localhost/mylink/" title="Welcome to My Site">Home</a></li> What I need Code: <li class="current index"><a href="http://localhost/mylink/" title="Welcome to My Site"><span>Home</span></a></li> If anyone can guide me to the file where get_navigation is build that would be a huge help Thanks for any help Menu Question - yojoe - 2011-12-05 admin/inc/theme_functions.php line 607: function get_navigation($currentpage) Menu Question - PMB - 2011-12-05 yojoe Wrote:admin/inc/theme_functions.php Thanks ! |