首頁  >  問答  >  主體

Woocommerce 刪除管理電子郵件的新訂單標題

如何刪除或隱藏管理電子郵件的新訂單標題?

我的問題:

我想列印我的訂單,但電子郵件超過一頁。如果我可以刪除標題,我的訂單只適合一頁。

P粉442576165P粉442576165238 天前359

全部回覆(1)我來回復

  • P粉969253139

    P粉9692531392024-01-30 00:16:07

    嘗試使用

    add_filter('woocommerce_email_heading_new_order','my_email_heading_customisation_function', 1, 2);
    function my_email_heading_customisation_function($heading){
        $heading='';
        return $heading;
    }

    回覆
    0
  • 取消回覆