Hi, I first downloaded the jgrowl jquery plugin to my sites/all/libraries directory. The downloaded and enabled nicemessages. Cleared cache twice. However the supported, released version uses the local version of jgrowl. I next downloaded the dev version and ran updates (no updates where needed). Cleared cache twice. From the HTML source, I can see the libraries dir jgrowl's .js and .css and included in the page. However, no messages are displayed with jgrowl. Initially I tried without setting the permsission to turn off nice messages. Then I tried with it on. I changed the default display time from 3 secs to 5 secs. Then I set the display times for warning and error to zero. None of the changes made a jgrowl message display.

Any ideas what could be going wrong?

Comments

dqd’s picture

RobKoberg, could your issue belong to this? -> #1290716: Renaming of library folder needs to be documented

do you have enabled Nice messages in your user profile like described in README ?

maykbrito’s picture

I try this module here and the same issue.

I realized that this function is messing something
nicemessages_are_enabled ()

so in the line 74

function nicemessages_preprocess_page(&$vars) {
  if (nicemessages_are_enabled ()) {
    // Do not display messages in standard way,
    $vars['show_messages'] = false;
    // display them with jGrowl
    nicemessages_set_messages();
  }
}

I do this (I know that this is a mess but works) :P

function nicemessages_preprocess_page(&$vars) {
  //if (nicemessages_are_enabled ()) {
    // Do not display messages in standard way,
    $vars['show_messages'] = false;
    // display them with jGrowl
    nicemessages_set_messages();
  //}
}

Try this.

maykbrito’s picture

I think that I found something.

Check if you get that error and apply those patches
http://drupal.org/node/1331334

dqd’s picture

Issue summary: View changes
Status: Active » Closed (cannot reproduce)

close for inactivity