Giga Menu does not generate the block for the menus those have a space in the title, which will be replaced with dash (-) in it's machine name. I put the following code in hook_block_info() to solve this problem:

(around line 72-76 in gigamenu.module)

    if (variable_get('gigamenu_enabled_' . $name, FALSE)) {
      $name = str_replace('-', '_', $name); // <-- Fix this issue by mangle dash with underscore
      $blocks['gigamenu_' . $name]['info'] = t('Giga menu: !name', array('!name' => check_plain($title)));
      $blocks['gigamenu_' . $name]['cache'] = DRUPAL_NO_CACHE;
    }

Comments

BoogieBug’s picture

You will also need to convert it back in hook_block_view() with following code:

  $menu_name = str_replace('_', '-', substr($delta, 9));