add_filter( 'woocommerce_order_item_name', 'hide_product_name_in_automatewoo_emails', 10, 2 ); function hide_product_name_in_automatewoo_emails( $product_name, $item ) { // Controleer of we in een AutomateWoo e-mail zijn (optioneel) if ( did_action( 'automatewoo/email_before_send' ) ) { return ''; // Verwijder productnaam } return $product_name; }