Hi @ibaad06 ,
I have the same problem! ??
The issue is in:
wp-content\plugins\license-manager-for-woocommerce\templates\emails\lmfwc-email-order-license-keys.php line 49 – 56:
<?php
printf(
// translators: %1$s represents $valid_until, %2$s represents $date
esc_html__( '%1$s <strong>%2$s</strong>', 'your-text-domain' ),
esc_html( $valid_until ),
esc_html( $date )
);
?>
You can not use HTML syntax in esc_html__() function.
Further for me it does not work how $date is initialized (but I did some modifications to be able to use datetime). Since $date seems to work for @devsimmao so never mind this issue…