Well not the post, but I've "promoted to front" one story that I need to show, and it's not :) Whatever I did to remove it happened months ago. I tried removing some code, but to no avail. Here's the code in the "content" section of the page.tpl.php file:


<div id="content">	
		<?php if (!$is_front && !$is_registration && !$is_travel && ($is_schedule || $is_thursday || $is_friday || $is_wednesday || $is_node)): ?>
			
		
			<div class="schedule_links">
				<div class="link_days">
					<a href="/wednesday">Wednesday</a>
					<a href="/thursday">Thursday</a>
					<a href="/friday">Friday</a>
				</div>
			</div>
		<?php endif; ?>
		
		<?php if (!$is_front && !$is_registration && !$is_travel && ($is_thursday || $is_friday || $is_wednesday || $is_node)): ?>
			<script>
				$(document).ready(function() {
					$('#Schedule a').addClass("active");
				});
			</script>
		<?php endif; ?>
<?php print $ticker?>
<!-- **************** Front Slideshow **************** -->	
			<?php if ($is_front): ?>
				<div class="one">
					<div class="main_view"><!-- Slideshow Start -->
						<div class="window">
					        <div class="image_reel">
					            <a href="#"><img src="/sites/all/themes/paradise/images/reel_2.jpg" alt="" /></a>
					            <a href="#"><img src="/sites/all/themes/paradise/images/reel_4.jpg" alt="" /></a>
					            <a href="#"><img src="/sites/all/themes/paradise/images/reel_3.jpg" alt="" /></a>
					            <a href="#"><img src="/sites/all/themes/paradise/images/reel_4.jpg" alt="" /></a>
					        </div>
					    </div>
					    <div class="paging">
					        <a href="#" rel="1">1</a>
					        <a href="#" rel="2">2</a>
					        <a href="#" rel="3">3</a>
					        <a href="#" rel="4">4</a>
					    </div>
					</div><!-- Slideshow End -->
				</div>
			<?php endif; ?>
<div class="content">
                     
                      <?php if ($tabs): echo '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
                      <?php if ($title): echo '<h2 class="PostHeaderIcon-wrapper'. ($tabs ? ' with-tabs' : '') .'">'. $title .'</h2>'; endif; ?>
                      <?php if ($tabs): echo $tabs . '</div>'; endif; ?>
                      <?php if ($tabs2): echo '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
                      <?php if ($mission): echo '<div id="mission">' . $mission . '</div>'; endif; ?>
                      <?php if ($help): echo $help; endif; ?>
                      <?php if (!$is_front): ?>
                      	<?php if ($show_messages && $messages): echo $messages; endif; ?>
                      	<?php echo art_content_replace($content); ?>
                      <?php endif; ?>
                    </div>


<!-- **************** Left Teaser **************** -->				
				<?php if ($is_front): ?>
					<div class="two">
						<?php print $teaserleft ?>
					</div>
				<?php endif; ?>
				
<!-- **************** Right Teaser **************** -->	
					<?php if ($is_front): ?>				
						<div class="two2">
							<?php print $teaserright ?>
						</div>
					<?php endif; ?>
									
<!-- **************** Long Ad **************** -->	
							<?php if($is_front): ?>									
								<div class="ad">
									<?php print $adlong ?>
								</div>
							<?php endif; ?>


                    
                    <div class="clear"></div>

</div>

Any ideas or suggestions are greatly appreciated!