我的插件项目的最终目标是让图像上传到数据库(完成)让它执行一些功能(完成),然后让它由管理员放置在结帐/购物车的某个任意位置(哦,恐怖)。
我首先只是尝试将 .phtml 硬编码到此页面上的任何块中(为了讨论,我们使用“checkout.cart.coupon”)。我的 xml 看起来像这样:
<checkout_cart_index>
<reference name="content">
<block type="embeds/projecttemplates" name="project.offers.embed" template="project/button.phtml" after="checkout.cart.coupon">
</block>
</reference>
</checkout_cart_index>
有了这个,我的块就出现在页面的末尾。将之后更改为之前只是将其一直转移到顶部。使用 before 和 after 的组合仍将其保留在页面顶部。有没有办法让它留在我告诉它的地方而不必求助于原型?