php - Magento Global Messages not displaying site wide -
i've discovered global messages on magento site no longer displaying.
messages such login failure, item has been added cart, etc no longer display
i haven't made changes templates , i've checked both template .phtml , page.xml files make sure inline code call global message there, , is.
oddly enough, newsletter submission message still works
i've been trying troubleshoot days , still @ loss :(
does have suggestion can do?
so not flood post code, here page.xml
page.xml: http://www.diegocordero.com.au/magento/page.xml
and 3columns.phtml:
<?php echo $this->getchildhtml('after_body_start') ?> <div class="wrapper"> <?php echo $this->getchildhtml('global_notices') ?> <div class="page"> <?php echo $this->getchildhtml('header') ?> <div class="main-container col3-layout"> <div class="main"> <?php echo $this->getchildhtml('breadcrumbs') ?> <div class="col-wrapper"> <?php // left_first block display above main content on smaller viewports ?> <?php if ($_leftcontent = $this->getchildhtml('left_first')): ?> <div class="col-left sidebar col-left-first"><?php echo $_leftcontent; ?></div> <?php endif; ?> <div class="col-main"> <?php echo $this->getchildhtml('global_messages') ?> <?php echo $this->getchildhtml('content') ?> </div> <div class="col-left sidebar"><?php echo $this->getchildhtml('left') ?></div> </div> <div class="col-right sidebar"><?php echo $this->getchildhtml('right') ?></div> </div> </div> <?php echo $this->getchildhtml('footer_before') ?> <?php echo $this->getchildhtml('footer') ?> <?php echo $this->getchildhtml('global_cookie_notice') ?> <?php echo $this->getchildhtml('before_body_end') ?> </div> </div> live test: www.diegocordero.com.au/magento
Comments
Post a Comment