Magento:为不同的页面布局使用不同的页脚

时间:2013-09-22 15:08:49

标签: php magento

我尝试了各种教程,但是我无法使用它。

基本上,我希望在我的主页上有一个不同的页脚。我已经设置了两个页面布局并将它们应用到了cms页面。

所以在主页布局中我指的是......

<?php echo $this->getChildHtml('footer_home') ?>

在所有其他页面上......

<?php echo $this->getChildHtml('footer_alt') ?>

非常简单! 然后在页面xml中我修改了引用页脚的部分如下......

            <block type="page/html_footer" name="footer_alt" as="footer_alt" template="page/html/footer_alt.phtml">
            <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
                <label>Page Footer</label>
                <action method="setElementClass"><value>bottom-container</value></action>
            </block>
            <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
            <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
        </block>


          <block type="page/html_footer" name="footer_home" as="footer_home" template="page/html/footer_home.phtml">
            <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
                <label>Page Footer2</label>
                <action method="setElementClass"><value>bottom-container</value></action>
            </block>
            <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
            <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
        </block>

我认为这就是问题所在。以上所有页面都显示了'footer_alt'页脚,我不知道为什么。

我可以确认'page / html / footer_alt.phtml'和'page / html / footer_home.phtml'设置正常。

我希望这是有道理的。感谢。

3 个答案:

答案 0 :(得分:7)

所有这些答案方式过于复杂,无法提供简单明了的解决方案。重写是过度的。重写Magento核心,即使正确完成,也应始终引发警报并立即强迫开发人员彻底阅读Magento源代码。根据我的经验,每一次Magento的心痛都伴随着一种神秘但完全令人满意的解决方案。这是令人满意的解决方案之一。

毫不奇怪,Magento任意决定确保页脚模板不会生成唯一的缓存键。这意味着根据加载的网站部分,页脚不能有所不同;要清楚,它实际上可以,但如果禁用块缓存。但是,永远不应该禁用块缓存,因此最终,这相当于限制整个站点的单个页脚。

有合法的用例需要在网站的不同部分使用不同的页脚。例如,在结账时:结账应该是身临其境且没有注意力分散。但是,当网站上的任何页面被点击时,这些页面的页脚将被缓存,然后结帐将显示相同的页脚。

这里描述的解决方案需要核心重写,这是不好的,或者需要一些其他条件检查,这些检查不会在一些条件下合理扩展。

我的解决方案很简单:将cacheKey添加到新模板。定位给定页面的布局句柄,引用页脚,设置模板,然后添加cacheKey。这只是标准的Magento布局XML。此布局XML更改单页结帐时的页脚 - 以及单页结帐时仅 。此外,缓存将继续适用于以这种方式定义的每个唯一页脚。

    <checkout_onepage_index>
        <reference name="footer">
            <action method="setTemplate">
                <template>linusmoneymaker/page/html/checkout-footer.phtml</template>
            </action>
            <action method="setCacheKey">
                <key>your-own-unique-cache-key-for-linus-moneymaker</key>
            </action>
        </reference>
    </checkout_onepage_index>

这有以下原因。以下是app/code/core/Mage/Core/Block/Abstract.php的源代码,它处理所有块缓存:

/**
 * Get Key for caching block content
 *
 * @return string
 */
public function getCacheKey()
{
    if ($this->hasData('cache_key')) {
        return $this->getData('cache_key');
    }
    /**
     * don't prevent recalculation by saving generated cache key
     * because of ability to render single block instance with different data
     */
    $key = $this->getCacheKeyInfo();
    //ksort($key);  // ignore order
    $key = array_values($key); // ignore array keys
    $key = implode('|', $key);
    $key = sha1($key);
    return $key;
}

请注意,如果定义了cacheKey,那么将优先于getCacheKeyInfoapp/code/core/Mage/Page/Block/Html/Footer.php方法生成的cacheKey方法,该方法不会生成每个模板唯一cacheKey。通过从布局XML中提供cacheKey,Magento有效地放弃了默认的,非唯一的页脚{{1}},而不是通过站点的给定部分的布局XML手动提供的页脚。

这不仅是正确的方式,而且无限扩展。网站上的每个页面都可以实际定义自己的页脚。

答案 1 :(得分:3)

你问题的原因应该是magentos阻止缓存。 与页眉一样,页脚是高速缓存的默认值 缓存键不包含tempalte

验证其缓存问题首先尝试:

检查块缓存是否已启用。 然后导航到您的页面。第一页上的页脚应为以下任何一种。 因此,如果您的第一页视图是您的替代页脚,则它将位于任何其他页面上,反之亦然。

如果问题是缓存,你应该能够解决这个问题 通过重写“Mage_Page_Block_Html_Footer”和 修改getCacheKeyInfo()以包含像这样的模板

public function getCacheKeyInfo()
{
    return array(
        'PAGE_FOOTER',
        Mage::app()->getStore()->getId(),
        (int)Mage::app()->getStore()->isCurrentlySecure(),
        Mage::getDesign()->getPackageName(),
        Mage::getDesign()->getTheme('template'),
        Mage::getSingleton('customer/session')->isLoggedIn(),
        $this->getTemplate()
    );
}

这应该可以解决你的问题

答案 2 :(得分:0)

  1. 创建名为“home_page_footer”和“inner_page_footer”的2个静态块。
  2. 打开footer.phtml并输入以下代码。

    <?php $home = Mage::getSingleton('cms/page')->getIdentifier(); ?>
    <?php if ($home):?>     
    <div style="clear:both;">
        <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('home_page_footer')->toHtml(); ?>
    </div>
    <?php else: ?>      
    <div style="clear:both;">
        <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('inner_page_footer')->toHtml(); ?>
    </div>
    <?php endif; ?>     
    
  3. 希望它会有所帮助。