It looks like you're new here. If you want to get involved, click one of these buttons!
echo fuel_nav(array('file'=>'footermenu','container_tag_id' => 'footermenu', 'render_type'=>'delimited', 'active_class'=>'active', 'delimiter'=>' - '));
url: localhost/clarenssa/home
The html:
<div id="footermenu">
<a href="http://localhost/clarenssa/home" title="Home">Home</a> - <a href="http://localhost/clarenssa/events" title="Events">Events</a> - <a href="http://localhost/clarenssa/gallery" title="Gallery">Gallery</a> - <a href="http://localhost/clarenssa/clarenstourismforum" title="Tourism Forum">Tourism Forum</a> - <a href="http://localhost/clarenssa/contact" title="Contact Us">Contact Us</a> - <a href="http://localhost/clarenssa/sitemap" title="Sitemap">Sitemap</a></div>
Comments
I just did a quick test and this:
<?=fuel_nav(array('render_type' => 'delimited'))?>
for url http://localhost/test_project/home, outputs:
<a href="http://localhost/test_project/home" class="active">Home</a> | <a href="http://localhost/test_project/one">One</a> | <a href="http://localhost/test_project/two">Two</a> | <a href="http://localhost/test_project/three">Three</a>
To test, can you scale your usage back to that and see if you get what I do?
https://github.com/daylightstudio/FUEL-CMS/tree/1.0
The fix I believe is to replace line 738 of the fuel/modules/fuel/libraries/Menu.php file with the following:
$links[] = $this->_create_link($val, $val['id']);
So I can't call my menu like you do I need to give it all the parameters that I am giving it.
admin, there is no Menu.php file under: fuel/modules/fuel/libraries
There is one under fule/application/libraries and in this file on line: 691 there is this code:
$links[] = $this->_create_link($val);
which I changed to your code:$links[] = $this->_create_link($val, $val['id']);
but that didn't help.https://github.com/daylightstudio/FUEL-CMS/blob/1.0/fuel/modules/fuel/libraries/Menu.php