• Resolved Zanes

    (@zanes)


    Hello,

    As said in the title, the time displayed is completely wrong.
    It says, for example, 01:55:00 AM, but my blog’s time is actually 19:55:00 PM 😉

    Regards,

    Zanes

Viewing 2 replies - 1 through 2 (of 2 total)
  • I changed this line in the plugin…

    echo "<span id='$span_id-time'>" . (date_i18n('U')-4*60*60) . '</span>';

    to… -1 from -4.

    echo "<span id='$span_id-time'>" . (date_i18n('U')-1*60*60) . '</span>';

    To give me the time I wanted.

    Thread Starter Zanes

    (@zanes)

    Had to change mine to
    echo "<span id='$span_id-time'>" . (date_i18n('U')-2*60*60) . '</span>';
    to match my blog’s time.

    Looks like the plugin doesn’t seek the right time automatically :/
    Worked fine in the previous version though.

    Thanks for your answer 😉 Hopefully this should help other people.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Blog Time] Wrong time displayed’ is closed to new replies.