Hi
I understand the point of free plugin, but i would also apriciate little support after 5 days 🙁
Thanx
try to replace the code at line 1060
from:
return get_date_from_gmt(gmdate('Y-m-d H:i:s',$expirationdatets),$format);
to
return date_i18n( $format, strtotime( $expirationdatets ) );
huh .. not quite perfect 🙂
Now, i’m facing with different date format. Date is strange
http://www.cele.si/second/svet-v-mestu-ditka/
the line “zaključek” .. you see the date?
Post expirator is set to 01.08. at 22:00
sorry! try this
from:
return get_date_from_gmt(gmdate('Y-m-d H:i:s',$expirationdatets),$format);
to
return date_i18n( $format, $expirationdatets );
better 🙂 but with some strange timings .. some dates (times) are showing 2 hours backwards, some shows 1 hour backwards .. totally strange 🙂
i.e. this one http://www.cele.si/second/ziveti-v-celju/ should end at 17:00 yet displays 16:00
this one http://www.cele.si/second/svet-v-mestu-ditka/ is set to finish at 22:00 yet it shows 20:00
Any idea?