0

我正在为前端创建一个新的 Magento 1.7.0.2 模块,但我无法让我的一个块附加到页面的任何体面点。目前它隐藏在其页面底部,所有默认内容都在其上方。我还没有真正搞砸前端,所以这是一个相当新鲜的 Magento 安装。我已经尝试过引用标签,但如果我目前包含它们,无论我在名称引号中添加什么,我的块都会完全消失。

我的布局:

<?xml version="1.0"?>

<layout version="0.1.0">
    <default>
    </default>
    <!--<reference name="root">-->
        <makeorder_index_index>
            <block type="makeorder/testblock" output="toHtml" name="orderdispaly"
                    template="makeorder/orderdisplay.phtml"/>
        </makeorder_index_index>
    <!--</reference>-->
</layout>

我当前的模板:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Test Block</title>
</head>
<body>
    <h2>Hello!</h2>
    <div class="Test1">
        <?php echo $this->displaystyles();?>
    </div>
    <br /><hr /><br />
    <div class="test2">
        <?php echo $this->displaypapers();?>
    </div>

</body>
</html> 

我想让块进入页面中间。任何帮助将不胜感激,因为我显然错过了一些重要的东西。

4

1 回答 1

0

您的布局 xml 中有几个错误,但我不会更正它们,而是以这种方式作为开始(除非您有理由想在自己的模板中重新创建完整的页面布局??)

布局:

<?xml version="1.0"?>

<layout version="0.1.0">
    <makeorder_index_index>
        <reference name="root">
            <action method="setTemplate"><template>page/1column.phtml</template></action>
        </reference>
        <reference name="content">
            <block type="makeorder/testblock" name="orderdispaly" template="makeorder/orderdisplay.phtml" />
        </reference>
    </makeorder_index_index>
</layout>

模板:

<h2>Hello!</h2>
<div class="Test1">
    <?php echo $this->displaystyles();?>
</div>
<br /><hr /><br />
<div class="test2">
    <?php echo $this->displaypapers();?>
</div>
于 2012-09-06T19:52:42.953 回答