gpt4 book ai didi

php - 在新订单电子邮件通知中显示客户 IP 地址

转载 作者:行者123 更新时间:2023-12-02 00:28:59 26 4
gpt4 key购买 nike

创建新订单时,woocommerce 会向管理员发送一封电子邮件,我希望它也在电子邮件中发送客户的 IP 地址。但我无法让它工作,这是我到目前为止得到的:

<?php echo get_post_meta( $order->id, '_customer_ip_address', true ); ?>

此代码位于mytheme/woocommerce/emails/admin-new-order.php

有什么想法吗?

谢谢。

最佳答案

(添加了对 WooCommerce 版本 3+ 的兼容性)

Update 2: Added a condition to display the address IP only for Admin New orders notification. Replaced undefined $email_id by $email->id;

您可以使用任何相关的电子邮件通知 Hook ,并且无需覆盖 WooCommerce 电子邮件模板。

在下面的示例中,客户 IP 地址将显示在客户详细信息之前,using woocommerce_email_customer_details Hook :

add_action('woocommerce_email_customer_details', 'send_customer_ip_adress', 10, 4);
function send_customer_ip_adress($order, $sent_to_admin, $plain_text, $email){

// Just for admin new order notification
if( 'new_order' == $email->id ){
// WC3+ compatibility
$order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id;

echo '<br><p><strong>Customer IP address:</strong> '. get_post_meta( $order_id, '_customer_ip_address', true ).'</p>';
}
}

此代码经过测试并且功能齐全。

代码位于事件子主题(或主题)的 function.php 文件中。或者也可以在任何插件 php 文件中。

You can use also instead these hooks:

woocommerce_email_order_details
woocommerce_email_before_order_table
woocommerce_email_after_order_table
woocommerce_email_order_meta

关于php - 在新订单电子邮件通知中显示客户 IP 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41113379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com