After installing the nicemenu module I have noticed all the instruction and description text in drupal admin gets disabled. For example in the admin/module page the instructions about the dependency and required module is not shown (the attached image might help you understand this).

Please can anyone help me with this. This is very important to me as I am unable to install the modules without knowing the dependencies and I am unable to add help text in cck pages.

Thanks in advance

CommentFileSizeAuthor
admin module page.jpg43.48 KBshruthihs

Comments

shruthihs’s picture

Status: Active » Fixed

Fixed the problem myself.

removing the code below from nicemenu module page in the nice_menus_init function help me solve this issue.

if ($custom = variable_get('nice_menus_custom_css', '')) {
drupal_add_css($custom);
}
// Fall back to default layout.
else {
drupal_add_css(drupal_get_path('module', 'nice_menus') .'/nice_menus_default.css');
}

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.