修改下面的程式碼資訊,可以在 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 後臺勾選下面兩項程式碼才能生效
