4images Forum & Community

4images Issues / Ausgaben => Discussion & Troubleshooting => Topic started by: Pedrocas on June 11, 2009, 08:35:27 PM

Title: Remove Hours, Minutes and Seconds from date [SOLVED]
Post by: Pedrocas on June 11, 2009, 08:35:27 PM
Hi all,

Can someone please tell me how can I remove the Hours, Minutes and Seconds from the date field?
I don't want them to appear, only the regular date.
Thanks in advance for any help.

Regards,
Title: Re: Remove Hours, Minutes and Seconds from date
Post by: rustynet on June 11, 2009, 09:06:06 PM
try this:

edit your functions.php
find:
Code: [Select]
"image_date" => format_date($config['date_format']." ".$config['time_format'],$image_row['image_date']),
replace with this code:
Code: [Select]
"image_date" => format_date($config['date_format'],$image_row['image_date']),
good luck
Title: Re: Remove Hours, Minutes and Seconds from date
Post by: Pedrocas on June 11, 2009, 09:31:51 PM
Worked perfectly!  :D
Thank you very much for your help...