如何将块放置到另一个页面?

时间:2014-06-16 07:51:16

标签: magento checkout

我有礼品卡延期。我必须改变它的位置。

喜欢这个

enter image description here

我是从Magestore购买的。

阻止电话giftvoucher / payment / form.phtml

所以我需要这个块调用checkout / onepage / payment.phtml

谢谢

1 个答案:

答案 0 :(得分:0)

要移动的块,如果它只包含静态内容。然后,您可以在 payment.phtml

中使用以下代码
<?php print $this->getLayout()
                 ->createBlock("core/template")
                 ->setTemplate("[FILE_PATH_FOR_STATIC_CONTENT].phtml")
                 ->toHtml(); ?>

您还可以使用管理员将此内容置于静态阻止中,这样您也可以随时更改其内容。

在PHTML文件中调用静态块 -

 <?php echo $this->getLayout()->createBlock("cms/block")->setBlockId("STATIC_BLOCK_NAME")->toHtml() ?>