删除 Drupal Webform 提交电子邮件中的分页符字段
目前,我的电子邮件中有以下输出,并且希望从发送的电子邮件中删除分页符。
知道我需要在 webform-mail.tpl.php 中放入什么吗?
Application form completed on Wednesday, February 2, 2011 - 14:17 by 69.10.172.83
--Next--
--Next--
--Next--
--Next--
--Next--
Total: £0
Your personal reference number is: WSE93
编辑
我在我的主题 template.php 中尝试了 Ayush 的解决方案,加上 webform-mail.tpl.php 和 webform.module 但没有成功。有人有什么想法吗?
I currently have the following as an output in my email, and wish to remove the pagebreaks from the email that gets sent.
Any idea what I need to put in webform-mail.tpl.php?
Application form completed on Wednesday, February 2, 2011 - 14:17 by 69.10.172.83
--Next--
--Next--
--Next--
--Next--
--Next--
Total: £0
Your personal reference number is: WSE93
EDIT
I have tried Ayush's solution in my theme template.php, plus webform-mail.tpl.php and webform.module to no success. ANyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此
see this
那么您需要将其放入自定义模块中,例如带有名称的
mymodule.module
mymodule_webform_submission_render_alter(&$renderable)
使其正常工作。Well you need to put that in a custom module, like
mymodule.module
with the namemymodule_webform_submission_render_alter(&$renderable)
to make it work.