Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
Convert
Wordpress to Elxis
with
Elxis importer
!
Home
Help
Login
Register
Elxis CMS Forum
»
Extensions
»
Components
»
IOS vertical menu problem CONT'D (SOLVED)
« previous
next »
Print
Pages: [
1
]
Author
Topic: IOS vertical menu problem CONT'D (SOLVED) (Read 4171 times)
sophocles
Newbie
Posts: 45
IOS vertical menu problem CONT'D (SOLVED)
«
on:
November 02, 2010, 11:38:35 »
Hi,
The solution given to the overlap problem of the vertical menu,is nice and works fine if the menu is to be visible in all pages.
The e-shop I'm building is just a part of a bigger website and those making the choices, don't wish this menu to be visible on the front-page. In fact they want it only at the e-shop pages.
Yannis-K has given an excellent solution for an e-commerce only site, but this unfortunately is not viable for a mixed solution.
If you remove the menu from the first page (and all other), its position remains blank.
Any help / hint would be much appreciated.
«
Last Edit: November 02, 2010, 13:07:11 by cryonics2003
»
Logged
datahell
Elxis Team
Hero Member
Posts: 10356
Re: IOS vertical menu problem CONT'D
«
Reply #1 on:
November 02, 2010, 12:54:39 »
You should then change something on your template's HTML.
If you have something like this:
<div class="xxx">
<?php mosLoadModules('test', -2); ?>
</div>
Convert it to something like that:
<?php
if (mosCountModules('test') > 0) {
echo '<div class="xxx">';
mosLoadModules('test', -2);
echo '</div>';
}
?>
Logged
Elxis Team
|
Is Open Source
|
IOS Rentals | IOS AERO
sophocles
Newbie
Posts: 45
Re: IOS vertical menu problem CONT'D
«
Reply #2 on:
November 02, 2010, 13:03:01 »
Thanks
Logged
Print
Pages: [
1
]
« previous
next »
Elxis CMS Forum
»
Extensions
»
Components
»
IOS vertical menu problem CONT'D (SOLVED)