如何将电子邮件验证链接移至woocommerce的顶部?

时间:2019-07-03 06:22:18

标签: wordpress woocommerce

当新客户在woocommerce网站上注册时,他会收到这样的邮件

Welcome to hello
Hi denial,

Thanks for creating an account on example. Your username is 
denial. You can access your account area to view orders, change 
your password, and more at: https://example.com

We look forward to seeing you soon.

To Verify your Email Click Here

但是我想要这样

Welcome to hello
Hi denial,

Thanks for creating an account on example. Your username is 
denial. 

To Verify your Email Click Here

You can access your account area to view orders, change 
your password, and more at: https://example.com

We look forward to seeing you soon.

如何制作这样的东西。我想更改单击此处链接的顺序,如代码所示。该怎么做?

2 个答案:

答案 0 :(得分:0)

您是否正在使用电子邮件验证插件?它可能与woocommerce_email_footer挂钩,如果它的设置中没有可自定义的内容,则可以查看:

  1. 覆盖customer-new-account.php电子邮件模板(请参阅文档here)。
  2. 使用翻译插件(或代码)“翻译”第一段以包含链接。

答案 1 :(得分:0)

我找到了解决方案。我已经覆盖了customer-new-account.php,然后在其中声明了我想覆盖的插件的全局类。我还创建了自定义操作,然后将其传递到此文件中。效果很好。