Okay. I re-uploaded the wp-settings.php and now it’s working great. Thanks a bunch!
Still doesn’t work. Perhaps if I show the code snippet from the page.php file I made, where would I need to edit in order to remove the date and time.
<div id=”content”>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class=”post”>
<?php require(‘post.php’); ?>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<?php endforeach; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<p align=”center”><?php posts_nav_link() ?>
</div>
I checked the files in my theme, and I’m pretty sure there was a post.php file already with information about time, category, date, etc. It might help to check the page source and suggest what needs editing.
Thanks in advance!