1
このコードをthis answerから改善して、完了した注文ステータスメールに顧客のみが表示され、他のユーザーの役割は受け付けられません(購読者など) ...)。ここで完了した注文状況の電子メール通知のカスタムメッセージ
はそのコードです:
add_action('woocommerce_email_before_order_table', 'completed_order_mail_message', 20);
function completed_order_mail_message($order) {
if (empty($order->get_used_coupons()) && $order->post_status == 'wc-completed')
echo '<h2 id="h2thanks">Get 20% off</h2><p id="pthanks">Thank you for making this purchase! Come back and use the code "<strong>Back4More</strong>" to receive a 20% discount on your next purchase! Click here to continue shopping.</p>';
}
どのように私はそれを達成することができますか?
おかげ
これは完璧に機能します。ありがとうLoicTheAztec! – Volt