Post by hcri50 » Tue May 15, 2012 9:10 am

My client want me to change the time from 17:00 to 5 PM
How can I do that??


Products
15x Drinks (Soft Drinks) $22.50
-Soft Drinks Bottled Water
-Date & Time for Catering or Same Day Pickup 2012-05-16 17:00
10x Cheese Platter (Cheese Platter) $79.50
-Date & Time for Catering or Same Day Pickup 2012-05-16 17:00

Newbie

Posts

Joined
Sat Jan 07, 2012 2:50 am
Location - Sacramento, California

Post by Avvici » Tue May 15, 2012 9:33 am

Code: Select all

<?php
$military_time = '16:40';
$standard_time = date('h:i A', strtotime($military_time));
echo $standard_time;
?>
//result is 04:40 PM

User avatar
Expert Member

Posts

Joined
Tue Apr 05, 2011 12:09 pm
Location - Asheville, NC

Post by NorthernPride » Wed May 30, 2012 9:28 am

I have the same issue. Can we change the Time Option to display standard time with am or pm?

Newbie

Posts

Joined
Wed May 30, 2012 9:26 am

Post by hcri50 » Wed May 30, 2012 11:46 am


Newbie

Posts

Joined
Sat Jan 07, 2012 2:50 am
Location - Sacramento, California

Post by hcri50 » Wed May 30, 2012 11:47 am

Just an ending Note. THANK YOU FOR ANY HELP on this problem.

Newbie

Posts

Joined
Sat Jan 07, 2012 2:50 am
Location - Sacramento, California

Post by Avvici » Wed May 30, 2012 12:17 pm

Well, I see now what you mean. I hadn't noticed because I was choosing times before 12 PM :)
Open catalog/view/theme/default/template/product/product.tpl and find these commands towards the bottom of the page:

Code: Select all

$('.datetime').datetimepicker({
	dateFormat: 'yy-mm-dd',
	timeFormat: 'h:m'
});
$('.time').timepicker({timeFormat: 'h:m'});
Replace them with this, to get what you want.

Code: Select all

$('.datetime').datetimepicker({
	dateFormat: 'yy-mm-dd',
	timeFormat: 'hh:mm tt',
	ampm: true
});
$('.time').timepicker({timeFormat: 'hh:mm tt',ampm: true});
Tested on 1.5.2.1 + Again, sorry for the delay. Next time start off with a screen shot or a link. That was beneficial

User avatar
Expert Member

Posts

Joined
Tue Apr 05, 2011 12:09 pm
Location - Asheville, NC
Who is online

Users browsing this forum: No registered users and 7 guests