Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

p3sn

About

Username
p3sn
Joined
Visits
15
Last Active
Roles
Member

Comments

  • Can we add our modules to this github? I'm searching for / want to create a module for managing news and events. And also a module which connect with the Google Webmaster Tools API and Insights API. Maybe others can/will join me when creating thes…
  • Messy, because it messed up my design. But this was the solution, again simple: <?php echo fuel_nav(array('container_tag_id' => 'mainmenu', 'depth' => 0, 'parent_id' => '0')); ?> I really start to love FUEL CMS, only a good image edi…
  • I discovered a bug today... When I use depth=>0 for the main menu, it get's messy when I surf to a page which is two levels deeper. For example: -page 1 -- page 1.1 -page 2 -- page 2.2 - page 3. On the top level pages, the main menu works, on …
  • Thanks! Hmm, so easy. Strange I didn't see it. On remark: On this page (http://www.getfuelcms.com/user_guide/libraries/menu) it says 0 is default. But when I set depth => 0 it works as suspected. When I don't set it, I see all levels. So 0 is no…
  • Ah, I wasn't aware about that option. That works, although it's strange that I have to repeat the location there. Setting it to 'location' as you mention isn't possible?
  • I'm using the navigation created in the CMS. In /fuel/modules/fuel/libraries/Menu.php I changed the use_nav_key to 'location' but it doesn't seem to work. Matching the current url to the target (location) url instead of nav_key of the navigation it…
  • Okay solved, the problem was: The nav key was /mediation and the uri-segment result was mediation. I removed the / in the navigation module and it worked fine.
  • I'm running version 1.0. When I use this code: <?php echo fuel_nav(array('container_tag_id' => 'sidemenu', 'parent' => uri_segment(1))); ?> It doesn't work, if I use a page id, say 6. It will work. I looked into the fuel/modules/fuel/hel…
  • Hmm... i've edited the fuel_lang.php on github. Now there's a patch1: https://github.com/daylightstudio/FUEL-CMS/pull/184 Is this the right way to participate?
  • The language associated with the user was set to Dutch. Like I said: I tried it in Spanish too for example and got the same result (fuel module language is changing, the other modules not). I've downloaded and installed 1.0. I copied the other modu…
  • SOLVED: If I change the $config['language'] to dutch in: fuel/application/config/config.php, the language of the additional modules will change. Though a little bit weird I have to change it on two places. I thought FUEL would override the CI langu…
  • I'm having the same problem if I change the user language to spanish for example. The fuel module gets translated, the backup (and others) module not.
  • Did the same, and it didn't work for me... If I change the 'dutch' folder to 'dutch-1' for example. Then there will be no name (like Backup) visible. If I change it back to dutch, 'backup' is visible again... Changing $config['module_backup'] in the…
  • Indeed, I did... setting the language to dutch, without creating a 'dutch' folder will leave the translations empty. Setting up a dutch folder with dutch translations will show the English language file. If I set up a Dutch and English file, and I…