Hi,

First of all, thank you for uploading this theme; it's beautiful! I'm trying to disable the main menu via the theme configuration options. When I uncheck the checkbox in the toggle display section it updates fine, but the main menu is still displayed.

I was originally trying this for a subtheme used for wrapping HTMLmail newsletters with the echo module. However, when it didn't work there I tried it in the base theme (unchanged) and still no joy. Thanks for your time.

Jack

Comments

ravis’s picture

Status: Active » Closed (fixed)

If you wish to remove menu from theme, delete following codes from page.tpl.php

<div id="main-menu">
    <?php 
	$main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu')); 
	print drupal_render($main_menu_tree);
	?>
</div><!-- end main-menu -->