Hey. I did a addidional checkout field called “salutation_” I need this value in the order-completed-email body text as placeholder {salutation_} to do the text there.
I tryed this in function.php: (but it do not work ?? )
add_filter( ‘kadence_woomail_order_body_text’, ‘add_extra_placeholders’, 10, 2 );
function add_extra_placeholders( $body_text, $email ) {
if ( is_a( $email->object, ‘WC_Order’ ) ) {
$body_text = str_replace( ‘{salutation_}’, $this->custom_field(‘salutation_’), $body_text );
}
return $body_text;
}