Recent Topics

1 Nov 28, 2005 16:45    

I see a number of postings regarding the editing of the format of the Timestamp at the top of a group of postings, I'm wondering how to 'remove' the timestamp all together. The code in the _main.php that generates this bit seems to be integral to the rendering of posts and not easy to separate date from post.

Anyway any help appreciated!

2 Nov 28, 2005 19:55

It's far mor easy then you think

Now you have (probably)

if( isset($MainList) ) while( $Item = $MainList->get_item() )
	{
		$MainList->date_if_changed();
	?>

Change that to

if( isset($MainList) ) while( $Item = $MainList->get_item() )
	{
	?>

3 Dec 02, 2005 17:28

Brilliant, very nice.


Form is loading...