RELATED TO:
HealthPress Theme
Problem:
How to change the date format that appears after the user has picked from the calendar. Currently it shows 02/05/2013 but I want the format like 05/02/2013.?
Original poster
Solution:
Hi,
Related code is in “custom.js” in “js” folder of theme as displayed in following screenshot (Click to enlarge) :Replace that code (above screenshot code) with following new code
$( "#apo_date" ).datepicker({ dateFormat: 'dd/mm/yy' });it will provide you your required format.
For more information about formats, you can visit
http://docs.jquery.com/UI/Thanks.
Saqib