現在のメールがここに添付されています。 「売り手のリソースがwww.domain.com/slugに行く」という行を1つ追加したいと思います。このメールにこのテキストを追加するにはどうすればよいですか? (私は0のPHPスキルの横にあるが、勉強しようとしている)。Woocommerceにシンプルテキストを追加するメール
if (! defined('ABSPATH')) {
exit; // Exit if accessed directly
}
?>
<?php do_action('woocommerce_email_header', $email_heading, $email); ?>
<p><?php printf(__('Thanks for creating an account on %1$s. Your username is %2$s', 'woocommerce'), esc_html($blogname), '<strong>' . esc_html($user_login) . '</strong>'); ?></p>
<?php if ('yes' === get_option('woocommerce_registration_generate_password') && $password_generated) : ?>
<p><?php printf(__('Your password has been automatically generated: %s', 'woocommerce'), '<strong>' . esc_html($user_pass) . '</strong>'); ?></p>
<?php endif; ?>
<p><?php printf(__('You can access your account area to view your orders and change your password here: %s.', 'woocommerce'), make_clickable(esc_url(wc_get_page_permalink('myaccount')))); ?></p>
<?php do_action('woocommerce_email_footer', $email);
? 2つのアクションフック、 'woocommerce_email_header'と' woocommerce_email_footer'があります。 – helgatheviking
「アカウントを作成していただきありがとうございます」行の直後に追加したいと思います。現在の<?php if(文は自分のメッセージを入力します)の形式をコピーすることはできますか? ありがとう! –