Top Menu dissapears

Hello some time the top menu disappears.

Can you help me? The only thing I’ve done that could possible mess around with the menu was making the LOGO space bigger to insert a bigger image logo.

the temporary link is http://www.bikzshop.com/cenas

I’ve also seen in Chrome Developers tools that the JM menu has a lot or warnings.

Thank you

PS: I’ve noticed that every time I refresh the Cache Storage Management of Magento the menu appears but just for a while… weird

8 answers

Profile photo of Sherlock 0.00 $tone October 23, 2013
Public

Hi luisalgarvio,

you can open the file of app\code\local\Wavethemes\Jmmegamenu\Block\Jmmegam enu.php there you change this function

PHP Code:

 public function __construct($attributes = array()) {
              
               
parent::__construct ();
               

               $this->menu = new JAMenuMega();
               
$this->params = new stdclass(); 
               
               
$this->params->megamenu 1;
               
$this->params->startlevel 0;
               
$this->params->endlevel 10;
            } 




To this

PHP Code:

public function __construct($attributes = array()) {
              
               
parent::__construct ();
               
               
                
$this->addData(array(
                   
'cache_lifetime' => true,
               ));

               $this->menu = new JAMenuMega();
               
$this->params = new stdclass(); 
               
               
$this->params->megamenu 1;
               
$this->params->startlevel 0;
               
$this->params->endlevel 10;
            } 




I hope it helps !

#1
Profile photo of Sherlock 0.00 $tone October 30, 2013
Public

Try again please.

PS: By the way I don’t know if it was you or suddenly the menu appears again..

okay mate, so is it working now ? let me know if the menu suddenly disappear again

#7

This question is now closed

Written By

Comments