Page 1 of 1
How to display date in local format in blog?
Posted: Wed Aug 21, 2024 5:25 pm
by bzc0fq@gmail.com
Hi,
Could you please advise on how to display Blog's date in local format (Polish)?
To be more specific I would like to display a date in long format in Polish "środa, 21 sierpnia 2024" Polska (UTC+2)
Many thanks for helping!
Best Regards

Re: How to display date in local format in blog?
Posted: Wed Aug 21, 2024 7:23 pm
by Pablo
You can set the date format in the properties of the blog.
However, the format you are requesting is currently not supported.
Re: How to display date in local format in blog?
Posted: Wed Aug 21, 2024 7:40 pm
by bzc0fq@gmail.com
I see..., I will manage this in other way then...
anyway thanks for the information.
Best Regards
Re: How to display date in local format in blog?
Posted: Wed Aug 21, 2024 8:29 pm
by bzc0fq@gmail.com
Hi Pablo,
I wrote a javascript in order to convert $DATE$ from a layout file into Polish long date format.
Here is the code:
Code: Select all
<div class="blogitem">
<$HEADING$ class="blogsubject">$SUBJECT$</$HEADING$>
<p class="blogdate">
[b]<script type="text/javascript">document.write(date2polish('$DATE$'))</script>[/b]
</p>
<p class="blogthumb">$IMAGE$</p>
$TEXT$
<a class="blogbutton" href="$URL$" target="$TARGET$">$BUTTONTEXT$</a>
<p><span class="blogcomments">$LABEL$ <a style="color: black;" href="mailto:$EMAIL$?subject=$SUBJECT$">$EMAIL$</a></span> </p>
</div>
Code: Select all
DayT = new Array(7)
DayT[0] = "niedziela"
DayT[1] = "poniedziałek"
DayT[2] = "wtorek"
DayT[3] = "środa"
DayT[4] = "czwartek"
DayT[5] = "piątek"
DayT[6] = "sobota"
MonthT = new Array(12)
MonthT[0] = "stycznia"
MonthT[1] = "lutego"
MonthT[2] = "marca"
MonthT[3] = "kwietnia"
MonthT[4] = "maja"
MonthT[5] = "czerwca"
MonthT[6] = "lipca"
MonthT[7] = "sierpnia"
MonthT[8] = "września"
MonthT[9] = "października"
MonthT[10] = "listopada"
MonthT[11] = "grudnia"
function date2polish(dateT){
var tEMP = new Date(dateT);
var Day = tEMP.getDate();
var DayOW = tEMP.getDay();
var Month = tEMP.getMonth();
var Year = tEMP.getFullYear();
return DayT[DayOW] + " , " + Day + " " + MonthT[Month] + " , " + Year;
}
It works fine with date in mm/dd/YYYY format.