Recent Topics

1 Nov 12, 2006 19:43    

Searched and searched and never found the specific fix....

Where exactly is the code to remove the date from the top of each of post in the custom template?

Much thanks :D

2 Nov 12, 2006 22:08

Hi hmccorkle !

On your _main.php, find this,

// ------------------------------------ START OF POSTS ----------------------------------------
if( isset($MainList) ) $MainList->display_if_empty(); // Display message if no post
if( isset($MainList) ) while( $Item = $MainList->get_item() )
{
$MainList->date_if_changed();
?>
<div class="bPost bPost<?php $Item->status( 'raw' ) ?>" lang="<?php $Item->lang() ?>">

and delete

$MainList->date_if_changed();

so that it may look like

// ------------------------------------ START OF POSTS ----------------------------------------
if( isset($MainList) ) $MainList->display_if_empty(); // Display message if no post
if( isset($MainList) ) while( $Item = $MainList->get_item() )
{

?>
<div class="bPost bPost<?php $Item->status( 'raw' ) ?>" lang="<?php $Item->lang() ?>">


Form is loading...