Just noticed incorrect order time displays in "order history", no matter what time zone set in joomla config, couldn't fix it. Can anyone check this? How can I correct time?
VM2.0.10 on Joomla 1.5.26 PHP 5.3.14
What do you mean with incorrect order time? everything is 0000?
No, e.g., my server local time is 7.35 am, but it shows 3.35 am (always minus 4 hours). How can I adjust it? It doesn't help if I change joomla configuration time zone.
me too, anyone help me? I use VM 1.1.9
Same problem, latest J and VM (2.0.14). Order history is in UTC while we're +1
Same problem. Time in backend looks fine but in customers order history is wrong
I fixed it using the following in the override for orders/details_history.php
Comment out first line and paste the second.
<?php //echo $_hist->created_on; ?>
<?php echo vmJsApi::date($_hist->created_on,'LC2',true); ?>
Thank you very much randomdev, added.
How would it work to fix the FORMAT of the date/time displayed in the backend (Virutemart>Orders). I've been having a heck of a time trying to format the date to be Day, Month Date, Year with the correct 12 hour time.
Instead, it displays Day, Date Month, Year and uses 24 hour time.
Thank you.
You must change the LC2, to LC1 or so....
Indulge me on how I may do that. :)