Jump to content

How To Remove Custom Menu from Menu


Recommended Posts

  • 3 months later...

diegoparra - can you start a new thread just for your problem and give us a link to your site?

 

 

hello PSfever.com, I am unable to create a new topic.
 
would like to know how do I remove the blog items and custom menu Megamenu. 
 
My site www.suplelife.com.br, but right now I'm with the maintenance page enabled.
Link to comment
Share on other sites

 

hello PSfever.com, I am unable to create a new topic.
 
would like to know how do I remove the blog items and custom menu Megamenu. 
 
My site www.suplelife.com.br, but right now I'm with the maintenance page enabled.

 

I'm not aware of any restriction for new users in terms of startign a new thread.

But can you disable maintenance mode for a while? Otherwise there's nothing I can do.

Link to comment
Share on other sites

I'm not aware of any restriction for new users in terms of startign a new thread.

But can you disable maintenance mode for a while? Otherwise there's nothing I can do.

 

Ok Psfever.com 
 
I disabled maintenance mode. 
 
Thanks for your help.
Link to comment
Share on other sites

Could you copy the .tpl file of the module that is hooked in DisplayTop hook right below categories? I don't know what modules you're using - not sure if it's editable through your backoffice.

 

 

 

PSfever.com, follows the megamenu.tpl file:

 
 
<!-- Block categories module -->
 
{if $blockCategTree != ''}
 
<div class="ma-nav-mobile-container visible-sm visible-xs ">
 
<div class="navbar">
 
<div id="navbar-inner" class="navbar-inner navbar-inactive">
 
<div class="menu-mobile">
 
<a class="btn btn-navbar">
 
<span class="icon-bar"></span>
 
<span class="icon-bar"></span>
 
<span class="icon-bar"></span>
 
</a>
 
<span class="brand">{l s='Category'}</span>
 
</div>
 
<ul id="ma-mobilemenu" class="tree {if $isDhtml}dhtml{/if}  mobilemenu nav-collapse collapse">
 
{foreach from=$blockCategTree.children item=child name=blockCategTree}
 
{if $smarty.foreach.blockCategTree.last}
 
{include file="$branche_tpl_path" node=$child last='true'}
 
{else}
 
{include file="$branche_tpl_path" node=$child}
 
{/if}
 
{/foreach}
 
</ul>
 
                                <script type="text/javascript">
 
                                // <![CDATA[
 
                                        // we hide the tree only if JavaScript is activated
 
                                        $('div#categories_block_left ul.dhtml').hide();
 
                                // ]]>
 
                                </script>
 
</div>
 
</div>
 
</div>
 
{/if}
 
<!-- /Block categories module -->
 
 
 
<div class="nav-container visible-lg visible-md">
 
<div id="pt_custommenu" class="pt_custommenu">
 
   {$megamenu}
 
</div>
 
</div>
 
 
 
<script type="text/javascript">
 
//<![CDATA[
 
var CUSTOMMENU_POPUP_EFFECT = {$effect};
 
var CUSTOMMENU_POPUP_TOP_OFFSET = {$top_offset};
 
//]]>
 
</script>
Link to comment
Share on other sites

That's odd - is it modules/megamenu/megamenu.tpl or  themes/yourtheme/modules/megamenu/megamenu.tpl ?

The latter one rewrites the first one.

Is there any configuration possible in the megamenu module?

 

 

I get in themes/yourtheme/modules/megamenu/megamenu.tpl

 

 

I have normal to create the settings menus, but can not find where to remove this "custom menu"

Edited by diegoparra (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...