Thanks wprock and MAS.
I tried those two things and it is still not working
here is the code below for my page-events.php file. Where exactly should I put this line of code?
<?php get_header(); ?>
<div id=”columns”>
<div id=”centercol”>
<div class=”box”>
<div class=”top”></div>
<div class=”spacer”>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post() ?>
<div id=”post-<?php the_ID(); ?>” class=”post”>
<h2>” rel=”bookmark” title=”<?php _e(‘Permanent Link to’,woothemes); ?> <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(); ?>
</div>
</div>
<!–/post–>
<?php $comm = get_option(‘woo_comments’); if ( ($comm == “page” || $comm == “both”) ) : ?>
<div id=”comments”><?php comments_template(”, true); ?></div>
<?php endif; ?>
<?php endwhile; else : ?>
<div class=”post box”>
<div class=”entry-head”><h2><?php _e(‘404 – Not Found’,woothemes); ?></h2></div>
<div class=”entry-content”><p><?php _e(‘The page you are looking for is not here.’,woothemes); ?></p></div>
</div>
<?php endif; ?>
<div class=”fix”></div>
</div>
<!–/spacer –>
<div class=”bot”></div>
</div>
<!–/box –>
</div>
<!–/centercol –>
<?php get_sidebar(); ?>
<br class=”fix” />
</div>
<!–/columns –>
<?php get_footer(); ?>