Si quieres añadir custom placeholders al personalizador de emails de Kadence, copia y personaliza este snippet.
add_filter( 'kadence_woomail_no_order_body_text', 'custom_woomail_no_order_body_text', 10, 2 );
function custom_woomail_no_order_body_text( $body_text, $email ) {
if ( is_a( $email->object, 'WP_User' ) ) {
$body_text = str_replace( '{nombre_marcador}', "Texto a colocar", $body_text );
}
return $body_text;
}