How can you format how the news on the front page looks? I can't find a .tpl file that has that information.
Also, how can I change the date/time format that shows up to describe when an article or news piece was written? I don't want 24 hr. time.
Thanks in advance!
Change the way the news looks and how to change date format
Moderator: Thorsten
Re: Change the way the news looks and how to change date for
Hi,
bye
Thorsten
you can change that in the style.css file.JohnDubya wrote:How can you format how the news on the front page looks? I can't find a .tpl file that has that information.
hm, which format do you want?JohnDubya wrote:Also, how can I change the date/time format that shows up to describe when an article or news piece was written? I don't want 24 hr. time.
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi,
with this one below:
See PHP date format string for futhers details.
I'm not a CSS expert but I'm not sure that there are CSS attributes for doing L10N.JohnDubya wrote:I checked in the style.css file, but I couldn't find formatting options in there.
You need to hack the makeDate function: please locate, open and backup the file [PATH_TO_PMFINSTALL]/inc/functions.php, locate the makeDate function and replace this line:JohnDubya wrote:I would like to have the time listed in 12 hr. time (8am shows as 8:00 am and 6pm shows as 6:00 pm instead of 18:00).
Code: Select all
...
return date("Y-m-d H:i", $timestamp);
...
Code: Select all
...
return date("Y-m-d g:ia", $timestamp);
...
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Hi,
a news entry looks like the following:
Just take the CSS classes and set the attributes in style.css.
bye
Thorsten
a news entry looks like the following:
Code: Select all
<h3><a name="news_1">phpMyFAQ 1.6.0 beta Released!</a></h3><div class="block">The first beta release of phpMyFAQ adds some new features.
</div><div class="date">2006-03-05 07:19</div>
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist