@dee987
UM is not adding any times to the emails.
Have you made a customization of the email template?
Save a screen copy of your email template at imgur.com
and post the link here in the Forum.
Thread Starter
dee987
(@dee987)
Hi,
The image is here: https://imgur.com/a/bhW3j3O
I just went through my Ultimate Member settings and haven’t added any custom fields for this email. I noticed the same issue on a second site I manage.
Thanks for helping @missveronicatv
@dee987
You can try this code snippet to adjust your time for the emails.
I think that the addition of 4 hours to your time will be OK.
add_filter( 'um_submitted_data_value', 'um_submitted_data_value_timezone', 10, 4 );
function um_submitted_data_value_timezone( $v, $k, $data, $style ) {
if ( $k === 'timestamp' ) {
$v = $v + 4*3600;
}
return $v;
}
Install the code snippet into your active theme’s functions.php file
or use the “Code Snippets” plugin.
https://ww.wp.xz.cn/plugins/code-snippets/
Thread Starter
dee987
(@dee987)
@missveronicatv – thank you! It is just the oddest thing. I really appreciate the help.