Simple Machines Community Forum

Customizing SMF => SMF Coding Discussion => Topic started by: pixeleyes on June 17, 2012, 10:14:18 AM

Title: Subject with Time
Post by: pixeleyes on June 17, 2012, 10:14:18 AM
I want to add post subject before page index

Subject is working fine but time is not showing.

Quoteecho '
   <div class="topsub">
   ', $txt['topic'],  ':
   ', $context['subject'], '
   <p ', $topic['first_post']['member']['link'], ' ', $topic['first_post']['time'], '</p>
   </div>';

Can anyone correct it?
Title: Re: Subject with Time
Post by: Suki on June 17, 2012, 10:54:29 AM
Where exactly are you putting this code on? which page and on which part.
Title: Re: Subject with Time
Post by: pixeleyes on June 17, 2012, 11:12:30 AM
I'm putting these codes on top of post page.

Right after red marked subject I want Poster name with time.
Title: Re: Subject with Time
Post by: Suki on June 17, 2012, 06:09:28 PM
Don't you mean Display.template?

On display.template.php $topic holds nothing mire than the topic ID,  is an int and not an array, meaning $topic['first_post']['member']['link'] will not exist.

If you want info about the first message then you will need to do a query like this mod does: http://custom.simplemachines.org/mods/index.php?mod=1472