The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
External Links in Menu - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Feature Requests (http://get-simple.info/forums/forumdisplay.php?fid=7) +--- Thread: External Links in Menu (/showthread.php?tid=3403) |
External Links in Menu - cgavin - 2012-08-04 I may be wrong, but it looks like you can only link internal pages by default. Adding a menu item that links to an external source seems to be impossible without using a plug in or exporting your site to static html and editing it manually. I think the ability to link to external sites should really be a core feature of the Menu function.. External Links in Menu - sal - 2012-08-04 It is possible to do without a plugin. What I do is create a redirect.php template which has the following code in it: Code: <?php if(!defined('IN_GS')){ die('You cannot load this page directly.'); } External Links in Menu - RobA - 2012-08-08 I roughed up the start of a plugin to hook the menu here: http://get-simple.info/forum/post/8850/#p8850 This can be extended to add new external links. The multilevel navigation plugin can also do this (see half way down): http://mvlcek.bplaced.net/get-simple/multi-level-navigation/ -Rob A> External Links in Menu - mjm4842 - 2012-09-17 I do something similar. The biggest difference is tha I use the meta keywords field instead of the meta description field. For those who requiring step-by-step instructions... 1. Copy and paste the following into a new file. Call it "redirect.php". Code: <?php if(!defined('IN_GS')){ die('You cannot load this page directly.'); } 2. Place the file in the /theme/[YourTheme]/ folder on your website where [YourTheme] is the name of the theme you are using on your site. 3. Log into the admin side of your website and edit the page you want to redirect. 4. In the editor, click on the Page Options button at the top of the editor. 5. You will need to make two changes:
4. Click the Save Updates button at the bottom of the page. Now when anyone tries to view the page you just edited will automatically be redirected to the address you entered above. Why do this?
External Links in Menu - shovenose - 2012-09-23 I would like this feature too. Maybe add something to Menu Manager for this functionality? I achieve this currently by doing as follows: 1. Enable Fancy URLs 2. Make a folder same as slug 3. Make an index.php with a PHP redirect to the website. (see http://php.about.com/od/learnphp/ht/phpredirection.htm ) This accomplishes it! External Links in Menu - sal - 2012-09-25 shovenose Wrote:I achieve this currently by doing as follows: Enable Fancy URLs. Make a folder same as slug. Make an index.php with a PHP redirect to the website. (see about.com ) This accomplishes it! The way I do it from within GetSimple (see above) is more easier to manage. External Links in Menu - shovenose - 2012-09-25 True. |