Thank you @michel92 and @harmonic_design
Finally, solved the problem.
For myself
From you admin area, go to plugins -> plugin editor. From there, select the Save Results Light addon from the dropdown on the top right. Now navigate to ./includes/functions.php file.
On lines 60 and 61, you will see:
` // save the date and time
$result->datetime = date(‘m-d-Y h:i:s a’, time());`
replace this with:
`// save the date and time
date_default_timezone_set(‘Asia/Dhaka’);
$result->datetime = date(‘m-d-Y h:i:s a’, time());`
-
This reply was modified 4 years, 3 months ago by W Zaman.
-
This reply was modified 4 years, 3 months ago by W Zaman.