我正在通过网站(https://domain.webshop.com)中的iframe加载一个woocommerce商店(https://www.domain.com)。当用户注册时,信息存储在商店的域中,并通过以下链接向新注册的用户发送电子邮件:http://domain.webshop.com/myaccount。我想将此电子邮件中的链接更改为https://www.domain.com/myaccount,该页面包含带有http://domain.webshop.com/myaccount页面的iframe。
提前致谢
答案 0 :(得分:0)
您必须overwrite WooCommerce新帐户模板。 templates/emails/customer-new-account.php
您必须使用给定代码
替换第33行<p>
<?php
printf(__('You can access your account area to view your orders and change your password here: %s.', 'woocommerce'), make_clickable('https://mydomain.nl/mijn-account/'));
?>
</p>
只需使用您的https://www.domain.com/myaccount网址替换多行评论。