在 woocommerce 中自定义新帐户电子邮件模板
Posted
技术标签:
【中文标题】在 woocommerce 中自定义新帐户电子邮件模板【英文标题】:Customization of new account email template in woocoommerce 【发布时间】:2022-01-22 01:21:21 【问题描述】:我正在尝试在 woocoomerce 的新帐户邮件模板中添加页眉和页脚图像。新账户的默认模板如下
我正在尝试仅在此模板中添加页眉和页脚。(附上图片以便更好地说明)
我尝试过的 -
我将 customer-new-account.php 文件复制到我的子主题文件夹并添加了图像。但它没有显示图像。 文件路径 -
my-child-theme/woocommerce/emails/customer-new-account.php.
我的自定义代码是 -
defined( 'ABSPATH' ) || exit;
do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
<img src= 'Path of header image'>
<?php /* translators: %s: Customer username */ ?>
<p><?php printf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $user_login ) ); ?></p>
<?php /* translators: %1$s: Site title, %2$s: Username, %3$s: My account link */ ?>
<p><?php printf( esc_html__( 'Thanks for creating an account on %1$s. Your username is %2$s. You can access your account area to view orders, change your password, and more at: %3$s', 'woocommerce' ), esc_html( $blogname ), '<strong>' . esc_html( $user_login ) . '</strong>', make_clickable( esc_url( wc_get_page_permalink( 'myaccount' ) ) ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
<?php if ( 'yes' === get_option( 'woocommerce_registration_generate_password' ) && $password_generated ) : ?>
<?php /* translators: %s: Auto generated password */ ?>
<p><?php printf( esc_html__( 'Your password has been automatically generated: %s', 'woocommerce' ), '<strong>' . esc_html( $user_pass ) . '</strong>' ); ?></p>
<?php endif; ?>
<?php
/**
* Show user-defined additional content - this is set in each email's settings.
*/
if ( $additional_content )
echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
<img src= 'Path of footer image'>
do_action( 'woocommerce_email_footer', $email );
有什么建议吗?
【问题讨论】:
【参考方案1】:这可能是几件事。
我的最佳猜测
是你没有把模板放在正确的位置。那是经典。所以如果是我,那么我会首先确保“customer-new-account.php”在正确的位置。也许在这里阅读更多信息WooCommerce template structure
其他cmets
也可能是一些缓存。它似乎记得缓存这些电子邮件很麻烦。 您是否尝试过在 WooCommerce 后端简单地设置一个新的标题图像(WooCommerce >> 设置 >> 电子邮件 >> 标题图像)?里面还有一个“页脚文字”。 我通常会在大量修改邮件时使用插件,因为这实际上是一项相当多的工作(只是让您知道)。【讨论】:
感谢 Zeth 的回复。我将文件放在这个位置 my-child-theme/woocommerce/emails/customer-new-account.php.& 我也尝试通过 WooCommerce 设置→电子邮件更改它,但它在所有模板中添加了图像,如订单 &退款等。我只想更改新的用户帐户创建邮件。 您在电子邮件中看到任何更改吗?也许如果你只是先尝试做一个简单的改变,看看它是否“通过”?我通常使用“预览电子邮件”插件来快速查看我所做的更改。 da.wordpress.org/plugins/woo-preview-emails(与它无关)。 是的,我查过了。我在 woocommerce_email_header 操作后添加了简单的图片标签,但图片未显示。 我认为这个问题与 HTTPS 和非 HTTPS 有关,因为图像显示在预览中,但未显示在用户邮箱中。我正在咨询托管服务提供商。如果我发现了一些东西,我会在这里更新。谢谢泽思以上是关于在 woocommerce 中自定义新帐户电子邮件模板的主要内容,如果未能解决你的问题,请参考以下文章
为 Woocommerce 中的特定用户角色自定义我的帐户新菜单项
在“woocommerce_package_rates”挂钩中自定义税额