• Resolved TC.K

    (@wp_dummy)


    I have set the product Purchase Note in Advance tab.
    But I want to removed it from sending along in the product item details in email.
    How do I removed it from email?

Viewing 1 replies (of 1 total)
  • Thread Starter TC.K

    (@wp_dummy)

    Nevermind, I found the solution.

    Here the solution for who are interested.

    add_filter('woocommerce_email_order_items_args','remove_order_note',12);
    function remove_order_note($args){
    	$args['show_purchase_note']= false;
    	return $args;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove Product Order Purchase Note in Email’ is closed to new replies.