GetSimple Support Forum
External links in navigation - 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: External links in navigation (/showthread.php?tid=1495)



External links in navigation - dani - 2011-03-30

Hello everybody,
first of all i realy enjoy to work with GetSimple but I miss a way to add external links to the navigation. Any possibilities? Because at the moment I solved it with a hack in the theme_functions.php
Code:
$menu .= '<li class="'. $classes .'">';
                if(strpos($page['url'],"http://")===false){
                    $menu .= '<a href="'. find_url($page['url'],$page['parent']) . '" title="'. strip_quotes($page['title']) .'">';
                }else{
                    $menu .= '<a href="'.$page['url']. '" title="'. strip_quotes($page['title']) .'">';
                }
                $menu .= $page['menu'].'</a></li>'."\n";

and edited the page.xml manually. But every time I want to change the url or edit the "link-title" I had to use an ftp-client.

Thanks for ideas and ways to solve it.

Cheers
Dani


External links in navigation - polyfragmented - 2011-03-30

Yeah, that would be nice.


External links in navigation - RobA - 2011-03-31

There is a post on that here: http://get-simple.info/forum/topic/1246/use-link-as-menu-item/

-Rob A>


External links in navigation - mvlcek - 2011-04-03

The I18N plugin now supports external links, see here.


RE: External links in navigation - homershines - 2013-02-02

(2011-04-03, 00:19:37)mvlcek Wrote: The I18N plugin now supports external links, see here.


I'm having some difficulty getting this right.
I followed the simple instructions for external links at:
http://mvlcek.bplaced.net/get-simple/multi-level-navigation/

But, I have done something wrong.

I need some help.

Thanks.

Homer