No dropline and splitline menu available in Myfolio template

GK User
Sat Dec 10, 2011 8:49 pm
Hi!
I want to apply the dropline menu to my site's main menu, but it seems that it's not available in myfolio.
In the menu type field the only option i get is the GK Extra Menu. I checked if the dropline and splitline option is available in other gavick templates and they are... I guess there is a problem in Myfolio. Can anybody please help me??
Thanks!
User avatar
Fresh Boarder

GK User
Mon Dec 12, 2011 11:57 am
Somehow those menu types are disabled with this template. I will ask our developers about this. You can enable them yourself by opening file \templates\gk_myfolio\templateDetails.xml

Find:

Code: Select all

<field name="menu_type" type="list" default="gk_menu" label="TPL_GK_LANG_MENU_TYPE" description="TPL_GK_LANG_MENU_TYPE_DESC">
               <option value="gk_menu">TPL_GK_LANG_GK_MENU</option>
               <!--<option value="gk_dropline">TPL_GK_LANG_GK_DROPLINE</option>
               <option value="gk_split">TPL_GK_LANG_GK_SPLIT</option>-->
            </field>


Change to:

Code: Select all
<field name="menu_type" type="list" default="gk_menu" label="TPL_GK_LANG_MENU_TYPE" description="TPL_GK_LANG_MENU_TYPE_DESC">
               <option value="gk_menu">TPL_GK_LANG_GK_MENU</option>
               <option value="gk_dropline">TPL_GK_LANG_GK_DROPLINE</option>
               <option value="gk_split">TPL_GK_LANG_GK_SPLIT</option>
            </field>
User avatar
Platinum Boarder

GK User
Mon Dec 12, 2011 12:53 pm
It won't make sense as a developer said to me "It is not a bug - MyFolio has no dropline and split menu - that's why it is disabled".
User avatar
Platinum Boarder

GK User
Tue Dec 13, 2011 6:59 pm
Don Lee wrote:It won't make sense as a developer said to me "It is not a bug - MyFolio has no dropline and split menu - that's why it is disabled".


Hello again!

Thanks for your immediate reply. Is there any possibility though for an updated version of Myfolio with the dropline and split menu in the near future? I really need these options..

Thanks in advance
User avatar
Fresh Boarder

GK User
Wed Dec 14, 2011 9:36 am
I'm not sure, will ask our devs about this.
User avatar
Platinum Boarder

GK User
Thu Dec 15, 2011 8:32 pm
Hi!
is there anyway to totally erase the main menu module from Myfolio template and put another module instead, in position_7? No matter what i do (erase, unpublish) there is no change. When I try to put another menu module in the position_7 it doesn't appear on the template..

Thanks a lot!
User avatar
Fresh Boarder

GK User
Fri Dec 16, 2011 10:38 am
Hi,

In order to get rid of the main menu, you can:

Open: \templates\gk_myfolio\layouts\default.php

Find this code to remove:
Code: Select all
<div id="gkMainMenu">
                 <?php
                    $this->menu->loadMenu($this->getParam('menu_name','mainmenu'));
                     $this->menu->genMenu($this->getParam('startlevel', 0), $this->getParam('endlevel',-1));
                 ?>
              </div>
User avatar
Platinum Boarder


cron