I was wondering if some people could help, I have this code in my template:
<?php if ($this->countModules('quick_links_1')): ?>
<jdoc:include type="modules" name="quick_links_1" />
<?php endif; ?>
I have also created a menu which I have assigned to that position in Joomla admin, and the menu is displaying fine.
In the menu configuration I have “Show title” set to “show” but, it is not displaying the menu heading.
Any ideas? Also whilst I am on the subject, I cannot find the component (like com_content) for menus on the front end, I would like to be able to override the default display for menus so I can some extra HTML. Could you point me in the right direction?
I am using Joomla 2.5.
Thanks,
Ian
I managed to fuigure it out in the end, it was the jdoc include:
Which needs to be like this:
I ended up setting up my own modChrome in modules.php in the template folder. For more information on this, have a look here: http://docs.joomla.org/Applying_custom_module_chrome
And also as Javex says, there is no com_menu, it is in modules/mod_menu, I don’t know why I didn’t look in there!