Page 1 of 1

Date and time in Dark Theme

PostPosted: Wed Jan 31, 2007 3:51 am
Author: Dioncecht
I have 1.4.1 and I am using Helters Dark theme pack. One thing I noticed, and it is driving me nuts is that the date and time for the post is actually missing the day. It has month and year, but no date.

ex.
You have posted in this forum: Fri Jan 2007 02:12 pm

How do I fix that to include the date so I know which of the 4 Fridays in January?

Also, why does it say 'You have posted in this forum:' for every single forum regardless of whether or not I actually posted in that forum?

Re: Date and time in Dark Theme

PostPosted: Wed Jan 31, 2007 5:57 am
Author: Whisky
Verify this:
in the file templates/dark/view_topic_body.tpl, line 159, you must have this line:
Code: Select all
                            {postrow.POST_DATE}   {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</td>

If you can clearly see "{postrow.POST_DATE}", then it means your template file is correct and something probably changed in your viewtopic.php file, beacause the date format is created there and then sent to your template.

Re: Date and time in Dark Theme

PostPosted: Wed Jan 31, 2007 6:01 am
Author: Whisky
"Dioncecht";p="20929" wrote:Also, why does it say 'You have posted in this forum:' for every single forum regardless of whether or not I actually posted in that forum?

I must confess I found this strange aswell <img>
I removed this sentence from my themes.

If you want to do so quickely

OPEN templates/dark/view_topic_body.tpl

FIND
Code: Select all
                            <td><a><img></a>{L_POSTED}:

REPLACE WITH
Code: Select all
                            <td><a><img></a>Posted:

or whatever instead of "Posted:"

CLOSE THE FILE