I have Magento CE 1.7.0.2 site with a custom created theme.
Problem is: Only when I turn on cache - some content on page "doubles". So footer showed on page again in the end of the page.
Screen: http://img37.imageshack.us/img37/3038/eqv7.jpg
(Shop By block and footer doubled, as you see in the bottom)
Any suggestions how to fix? Or where to start looking at?
Thanks for any help,
Stanislav.
P.S. Code of "1-column.phtml" (this page template PHTML)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php echo $this->getChildHtml('head') ?>
</head>
<body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
<?php echo $this->getChildHtml('after_body_start') ?>
<div class="wrapper">
<?php echo $this->getChildHtml('global_notices') ?>
<?php echo $this->getChildHtml('header') ?>
<div class="category-page">
<?php echo $this->getChildHtml('breadcrumbs') ?>
<div class="bread" style="margin-top:40px"></div>
<?php echo $this->getChildHtml('global_messages') ?>
<div class="product-page" style="min-height:auto;">
<div class="content_main">
<?php echo $this->getChildHtml('content') ?>
</div>
</div>
</div>
<div class="bread2"></div>
<?php echo $this->getChildHtml('footer_block') ?>
</div>
<?php echo $this->getChildHtml('footer') ?>
<?php echo $this->getChildHtml('before_body_end') ?>
</body>
</html>
echo $this->getChildHtml('footer')orecho $this->getChildHtml('before_body_end')commented out, to see which one of those calls is displaying the double content ? - blmageecho $this->getChildHtml('footer')- StasGrinfooterblock - is just text with copyrights and nothing more. just 2 lines ofHTML.footer_block- is menu, that is doubled. - StasGrin<div class="wrapper"></div>, so there must be something that is not working well between the definition and/or uses of thefooterblock and the layout cache, can you paste here the places where thefooterblock is referenced in your layout files ? - blmagecatalog.xml: pastebin.com/SpwrTvcm 2.page.xml: pastebin.com/Nq09Pckp - StasGrin