User verification Plugin

Ticket for: User Verification
0
User verification Plugin 1
Paul Park
Mar 11, 2020 09:39 AM 1 Answers
Member Since Mar 2020
Subscribed Subscribe Not subscribe
Flag(0)

Thanks for the priceless plugin. 100% satisfied but I am just reporting an issue. I translated some strings into Korean with loco translate and it works great but one small issue regarding email subject line. When Korean strings are inserted to email subject. It gets to be un-recognizable special characters. Other than that translation works pretty well. Hope this help you improve the plugin . Thanks again.

2 Subscribers
User verification Plugin 1
User verification Plugin 3
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
User verification Plugin 4
PickPlugins
Mar 13, 2020
Flag(0)

Welcome to our forum.

I have recommended many of our users following code to fix email character set issue.

add_filter( 'wp_mail_charset', 'change_mail_charset' );
function change_mail_charset( $charset ) {
  return 'UTF-8';
}

In-case of "UTF-8" is doesn't work please use an appropriate character set for your language.

You will need to add following code to your themes functions.php file.

Regards

 

Sign in to Reply
Replying as Submit