Hello Joomla 51,
I cannot select the hornav and header module in the Avenue Template.
If I type in manually 'headermodule' it works, but this does not work for the hornav.
What to do?
Thanks for your help
[attachment]ishot-180.png[/attachment]
- ziggy
- Commercial Templates
- Saturday, 28 April 2012
- Subscribe via email
Hi blocki
On our Avenue template the hornav position is not a module position but a predefined area for your menu. You can choose what menu to display in this area via your templates parameters (Extensions -> Template Manager -> J51_Avenue -> Menu).
Ciarán
On our Avenue template the hornav position is not a module position but a predefined area for your menu. You can choose what menu to display in this area via your templates parameters (Extensions -> Template Manager -> J51_Avenue -> Menu).
Ciarán
- more than a month ago
- Commercial Templates
- # 1
Thank you for your quick reply Ciaran,
I tried it, but I have another problem now...
I'm trying to create a Multilingual site, but I can only give in 1 Main Menu.
Is there a workaround?
Here is the set-up of what I'm trying to do:
www.deblock-technologies.com/zessterren/index.php/nl/
Thanks, Ronald
I tried it, but I have another problem now...
I'm trying to create a Multilingual site, but I can only give in 1 Main Menu.
Is there a workaround?
Here is the set-up of what I'm trying to do:
www.deblock-technologies.com/zessterren/index.php/nl/
Thanks, Ronald
- more than a month ago
- Commercial Templates
- # 2
Hi blocki
Not sure if I fully understand your issue. You are only able to have one menu item in the hornav menu position?
New menu items can be added to your menu via your Menu Manager (Menus -> Main Menu -> New).
Ciarán
Not sure if I fully understand your issue. You are only able to have one menu item in the hornav menu position?
New menu items can be added to your menu via your Menu Manager (Menus -> Main Menu -> New).
Ciarán
- more than a month ago
- Commercial Templates
- # 3
Hello Ciaran,
No, I can add more items to the menus. But I can only chose 1 menu to be displayed in the hornav, as soon as I switch language, the other main menu can not be displayed.
In the control panel, I can only choose 1 main menu and I have 4 main menus, because of the 4 languages. The language switcher takes care of switching the correct menus in the correct modules for the different languages.
But as you said, the hornav is no module here, so this is the problem.
I'm a regular buyer of your themes, and I hope you have a solution, otherwise I need to buy another theme
Greetings, Blocki
No, I can add more items to the menus. But I can only chose 1 menu to be displayed in the hornav, as soon as I switch language, the other main menu can not be displayed.
In the control panel, I can only choose 1 main menu and I have 4 main menus, because of the 4 languages. The language switcher takes care of switching the correct menus in the correct modules for the different languages.
But as you said, the hornav is no module here, so this is the problem.
I'm a regular buyer of your themes, and I hope you have a solution, otherwise I need to buy another theme
Greetings, Blocki
- more than a month ago
- Commercial Templates
- # 4
Hi blocki
Ok I think I uderstand and thank you for bringing this to our attention. It was something we hadn't considered when designing the template.
To change this menu to a module position open up your templates header.php (../templates/j51_avenue/php/layouts/header.php) and replace the following (line 65)...
With...
This will convert the area to a module position. You will find the position to still not be listed in the positions dropdown in your modules parameters however this field is editable and you can simply type in the position name (hornav). Also remember to add moomenu to the modules Menu Tag ID.
Hope this helps
Ciarán
Ok I think I uderstand and thank you for bringing this to our attention. It was something we hadn't considered when designing the template.
To change this menu to a module position open up your templates header.php (../templates/j51_avenue/php/layouts/header.php) and replace the following (line 65)...
<div id="hornav">
<?php echo $hornav; ?>
</div>
With...
<div id="hornav">
<jdoc:include type="modules" name="hornav" />
</div>
This will convert the area to a module position. You will find the position to still not be listed in the positions dropdown in your modules parameters however this field is editable and you can simply type in the position name (hornav). Also remember to add moomenu to the modules Menu Tag ID.
Hope this helps
Ciarán
- more than a month ago
- Commercial Templates
- # 5
Thanks Ciarán,
it works great!
I'll send you the link later when the project is finished
it works great!
I'll send you the link later when the project is finished
- more than a month ago
- Commercial Templates
- # 6
Accepted Answer
Pending Moderation
I have the same problem on oxygen, tried the workaround but it still doesn't show the menu in hornav position. You suggested to add Menu tag ID , i looken in template.css but there's no moomenu style, is that the problem maybe?
Thanks a lot
Thanks a lot
- more than a month ago
- Commercial Templates
- # 7
Hi masani3llo
The animated dropdown script is set to run on the moomenu tag ID and has no influence on the module position.
May I suggest sending temporary administration access to your Joomla installation and if possible FTP access to your template directory to info@joomla51.com and we will examine your issue further.
Ciarán
The animated dropdown script is set to run on the moomenu tag ID and has no influence on the module position.
May I suggest sending temporary administration access to your Joomla installation and if possible FTP access to your template directory to info@joomla51.com and we will examine your issue further.
Ciarán
- more than a month ago
- Commercial Templates
- # 8
Hi! I just did this on Chimera template. Menu shows in hornav but it doesn't dropdown.
I have set moomenu in the field for Menu Tag ID in the module manager for my both menus.
I have set moomenu in the field for Menu Tag ID in the module manager for my both menus.
- more than a month ago
- Commercial Templates
- # 9
Within the menu modules parameters ensure you have 'Always show sub menu items' set to Yes.
Ciarán
Ciarán
- more than a month ago
- Commercial Templates
- # 10
Hi,
thanks for this topic it works fine also for the oxygen template!!!
Is this change also for the footermenu possible?
What I have to change?
Best Regards,
Wolfgang
thanks for this topic it works fine also for the oxygen template!!!
Is this change also for the footermenu possible?
What I have to change?
Best Regards,
Wolfgang
- more than a month ago
- Commercial Templates
- # 12
Hi Wolfgang
To convert the footer menu to a module position edit the following near the end of your templates base.php (../templates/j51_oxygen/php/layouts/base.php)..
Change to...
This will convert the area to a position called footermenu.
Ciarán
To convert the footer menu to a module position edit the following near the end of your templates base.php (../templates/j51_oxygen/php/layouts/base.php)..
<?php if($footermenu_onoff == "1") : ?>
<div id="footermenu" class="block_holder"><div class="module_margin">
<?php echo $footermenu; ?>
<div class="clear"></div>
</div></div>
<?php endif; ?>
Change to...
<div id="footermenu" class="block_holder"><div class="module_margin">
<jdoc:include type="modules" name="footermenu" />
<div class="clear"></div>
</div></div>
This will convert the area to a position called footermenu.
Ciarán
- more than a month ago
- Commercial Templates
- # 13
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »