修改下面的代码信息,可以在 WooCommerce 登录/注册表单上方添加一条消息,
Returning customers login. New users register for next time so you can:
这个改成你上面的邮箱说明,下面几个链接可要可不要,不要就删掉。
/**
* Add a message above the login / register form on my-account page
*/
add_action( 'woocommerce_before_customer_login_form', 'jk_login_message' );
function jk_login_message() {
if ( get_option( 'woocommerce_enable_myaccount_registration' ) == 'yes' ) {
?>
<div class="woocommerce-info">
<p><?php _e( 'Returning customers login. New users register for next time so you can:' ); ?></p>
<ul>
<li><?php _e( 'View your order history' ); ?></li>
<li><?php _e( 'Check on your orders' ); ?></li>
<li><?php _e( 'Edit your addresses' ); ?></li>
<li><?php _e( 'Change your password' ); ?></li>
</ul>
</div>
<?php
}
}
将此代码添加到子主题的 functions.php
文件中,代码添加完,到 WooCommerce 后台勾选下面两项代码才能生效