Removing Date Stamps from Blog Posts II
Permalinkhttp://www.stagingseydoux2.ch/concrete/index.php?cID=193...
Here is my current "blog_entry.php":
<?php defined('C5_EXECUTE') or die("Access Denied."); ?> <div class="pageSection"> <?php $ai = new Area('Blog Post Header'); $ai->display($c); ?> </div> <div class="pageSection"> <h1><?php echo $c->getCollectionName(); ?></h1> </div> <div class="pageSection"> <?php $as = new Area('Main'); $as->display($c); ?> </div> <div class="pageSection"> <?php $a = new Area('Blog Post More'); $a->display($c); ?> </div> <div class="pageSection"> <?php $ai = new Area('Blog Post Footer'); $ai->display($c); ?>
Any suggestions on what I could chop out further? Or should I be editing a different file?

I checked out your site (looks cool, BTW - I like the big photo backgrounds) but I could not find the blog/news area.
That said, from the code you posted above, it looks like the date/author part was already removed... so maybe you were looking at a cached copy of the page?
Cheers!