当您单击“发送给朋友的电子邮件”时,系统会将您定向到要提交的表单。我想在产品视图页面中显示此表单,而不是“通过电子邮件发送给朋友”链接。如何在view.phtml中调用send.phtml模板?
我尝试通过给这个
<?php
echo $this->getLayout()->createBlock("core/template")->setTemplate("sendfriend/send.phtml")->toHtml();?>
但这不起作用,显示错误。请帮忙
最佳答案
使用这个,您就错过了block type
<?php
echo $this->getLayout()->createBlock("sendfriend/send")->setTemplate("sendfriend/send.phtml")->toHtml();?>
关于magento - Magento-如何在View phtml文件中显示发送给 friend 表单的电子邮件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33818933/