更改 Magento 主题的页脚

Changing footer of a Magento theme

我安装了 Magento。在页脚区域,我想用静态块和其中的文本替换 'FROM TWITTER' 块。主题开发人员帮了我一些忙,他说我应该去 /app/design/frontend/default/trego/template/page/html/footer.phtml 找到下面的代码,然后用我的自定义代码替换。

        <div class="col-2">
            <h2 class="footer-title"><?php echo $this->__('From Twitter') ?></h2>
            <?php echo $this->getChildHtml('twitterfeed'); ?>
        </div>

请告诉我应该用什么代码替换上面的代码,这样我就可以有一个简单的静态文本块。

用你想要的内容创建一个静态块并将getChildHtml位替换为

<?php echo ($this->getLayout()->createBlock('cms/block')->setBlockId('BLOCK_IDENTIFIER')->toHtml()); ?>

BLOCK_IDENTIFIER 替换为从您的 cms 管理页面分配的标识符