18910140161

PHP-需要更改WoCommerce电子邮件主题。并希望显示产品简短描述-堆栈溢出

顺晟科技

2022-10-18 13:40:07

161

1我正在尝试更改WooCommerce电子邮件主题更改WooCommerce产品简短描述。

这是我的代码:

$this->subject          = __( 'Bid item on {site_title}', 'wc_simple_auctions');

我想展示关于这个主题

的WooCommerce产品的简短描述。

想在那里显示这个代码:

printf( __( " %s", 'wc_simple_auctions' ), $product_data->get_short_description()  );

顺晟科技:

在functions.PHP中

添加以下内容并尝试

add_filter( 'woocommerce_email_subject_customer_processing_order', 'change_processing_email_subject', 10, 2 );
  
function change_processing_email_subject( $subject, $order ) {
   $subject = $product->get_short_description();
   return $subject;
}

参考:https://docs.woocommerce.com/document/change-email-subject-lines/.

  • TAG:
相关文章
我们已经准备好了,你呢?
2024我们与您携手共赢,为您的企业形象保驾护航