在WooCommerce中为电子邮件主题添加自定义占位符

问题描述 投票:1回答:2

我有一个Woocommerce商店,我想在接受付款后添加一个delivery_date

我在名为delivery_date的订单部分中创建了一个带有日期值的自定义字段。

现在,我想将此自定义字段用作电子邮件通知主题中的占位符,例如:

您的订单现在是{order_status}。订单详细信息如下所示供您参考:deliverydate:{delivery_date}

我认为占位符不能像这样工作,我需要在php中改变一些东西,但我不知道在哪里。

php wordpress woocommerce orders email-notifications
2个回答
0
投票

要在woocommerce电子邮件主题中添加自定义活动占位符{delivery_date},您将使用以下钩子函数。

您将在之前检查,delivery_date是用于将结帐字段值保存到订单的正确的后元键(在wp_postmeta数据库表中查询订单post_id)。

代码:

add_filter( 'woocommerce_email_format_string' , 'add_custom_email_format_string', 10, 2 );
function add_custom_email_format_string( $string, $email ) {
    $meta_key    = 'delivery_date'; // The post meta key used to save the value in the order
    $placeholder = '{delivery_date}'; // The corresponding placeholder to be used
    $order = $email->object; // Get the instance of the WC_Order Object
    $value = $order->get_meta($meta_key) ? $order->get_meta($meta_key) : ''; // Get the value

    // Return the clean replacement value string for "{delivery_date}" placeholder
    return str_replace( $placeholder, $value, $string );
}

代码位于活动子主题(或活动主题)的function.php文件中。它应该有效。

然后在Woocommerce>设置>电子邮件>“新订单”通知中,您将能够使用动态占位符{delivery_date} ...


0
投票

如果您想在电子邮件内容中打印“delivery_date”的值,那么您可以这样做。

$content = "Your order is now %%order_status%%. Order details are shown below for your reference: deliverydate: %%delivery_date%%";
$search_array = ["{order_status}","{delivery_date}"]
$replace_array = [$valueOfOrderStatus,$valueOfDeliveryDate];
$content = str_replace($search_array, $replace_array, $content);
© www.soinside.com 2019 - 2024. All rights reserved.