Calendar

luizbittencourt wrote on Tuesday, September 27, 2016:

Using date format dd-mm-YYYY in portuguese (brazilian).
The top bar of calendar shows the date “weekday, month day, year”
I want to change to “weekday, day month, year”.
Where can I change the code to change it?

Thanks,

Luiz Bittencourt

epsdky wrote on Tuesday, September 27, 2016:

Hello Luiz,

in…

library/date_functions.php

add…

case "Portuguese (Brazilian)":

between line 69 and line 70 so that lines 69 - 71 become…

          break;
case "Portuguese (Brazilian)":
case "Spanish":

this will display date like…

Thursday 20 October 2016

Regards,

epsdky.

luizbittencourt wrote on Wednesday, September 28, 2016:

Thanks