更改WooCommerce发票订单邮件收件人

时间:2019-08-09 08:33:43

标签: email woocommerce invoice

我已经建立了一个Woocommerce网上商店,并希望更改订单发票的收件人。

网站使用带有Flatsome主题的WooCommerce V3.6.5。

我试图在Wordpress设置中更改管理员电子邮件地址,但这没有用。我仍然在旧的电子邮件地址收到发票。

我试图查看function.php,但仅显示以下内容:

 * @package flatsome
 */

require get_template_directory() . '/inc/init.php';

有人知道如何更改订单发票收件人吗?在WooCommerce->设置->电子邮件标签中,我只能更改电子邮件格式和“发件人”电子邮件地址。

1 个答案:

答案 0 :(得分:0)

我将使用$recipient变量寻求解决方案,请尝试一下。

function change_email_recipient( $recipient ) {
    global $woocommerce;
    $recipient = 'email@email.com';
    return $recipient;
}
add_filter( 'woocommerce_email_recipient_new_order', 'change_email_recipient', 10, 2 );