如何刪除或隱藏管理電子郵件的新訂單標題?
我的問題:
我想列印我的訂單,但電子郵件超過一頁。如果我可以刪除標題,我的訂單只適合一頁。
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; }