0

I'm developping a Wordpress site and would like to disable the JGrowl notifications that appear every time a product page is displayed. They show an information that we believe is not relevant to customers, so it would be better if it was hidden.

But I cannot find where to disable or hide it. By the moment, I've added a CSS rule, but it would be better to disable it completely.

Thankyou very much for your help.

Oscar Pérez
  • 4,377
  • 1
  • 17
  • 36

1 Answers1

1

Try this:

     $('#jGrowl').jGrowl('shutdown');

If you're using something other than the default container for your jGrowl notification you will have to update that selector accordingly.

stanlemon
  • 399
  • 3
  • 10
  • There is not a way that doesn't need to edit the template? I'd rather to configure it from Prestashop's control panel... – Oscar Pérez Apr 01 '14 at 09:08