我有一个自定义创建主题的 Magento CE 1.7.0.2 站点。
问题是:仅当我打开缓存时 - 页面上的某些内容“加倍”。所以页脚在页面末尾再次显示在页面上。
屏幕: http: //img37.imageshack.us/img37/3038/eqv7.jpg
(Shop By
块和页脚加倍,如底部所示)
任何建议如何解决?或者从哪里开始看?
感谢您的帮助,
斯坦尼斯拉夫。
“1-column.phtml”的PS代码(本页模板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>