我正在尝试添加一个新模板,以便可以并排放置两个内容块。例如:content_left 和 content_right。问题是新字段是空的,我无法在其中显示任何内容。目标是同时登录和创建帐户,每个都有自己的块。
这是新模板 2columns.phtml(修剪了一些):
<?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') ?>
<div class="page">
<?php echo $this->getChildHtml('header') ?>
<div class="main-container col2-right-layout">
<div class="main">
<?php echo $this->getChildHtml('breadcrumbs') ?>
<div class="col-main1">
<?php echo $this->getChildHtml('global_messages') ?>
<?php echo $this->getChildHtml('content_left') ?>
</div>
<div class="col-main2"><?php echo $this->getChildHtml('content_right') ?></div>
</div>
</div>
<?php echo $this->getChildHtml('footer') ?>
<?php echo $this->getChildHtml('before_body_end') ?>
</div>
</div>
<?php echo $this->getAbsoluteFooter() ?>
这是我尝试使用的 XML:
<customer_account_login translate="label">
<label>Customer Account Login Form</label>
<!-- Mage_Customer -->
<remove name="right"/>
<remove name="left"/>
<reference name="root">
<action method="setTemplate"><template>page/2columns.phtml</template></action>
</reference>
<reference name="content_left">
<block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml">
<block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before" translate="label">
<label>Form Fields Before</label>
</block>
</block>
</reference>
<reference name="content_right">
<block type="customer/form_login" name="customer_form_login" template="customer/form/login.phtml" />
</reference>
</customer_account_login>
除了 content_left 和 content_right 之外,一切似乎都正常。不幸的是,这需要展示所有重要的东西。我尝试更新 CSS,并在模块中定义了它。问题是使用“content_left/right”而不是“content”和其他已经使用过的东西吗?请帮忙,我整天都在这个页面上。