Damsel in distress! Single.php sending comments to 404. Style_ie.php. HELP!
-
Hi everyone.
I hope someone can help me.
I am the new webmaster for https://orangejuiceblog.com. I’m pretty new to PHP. I have three problems. Two are big problems.
The first problem is that when you click on the button to submit a comment, the site goes to the 404 page instead of posting the comment. I’ve gotten it to work with a style.php from another theme, but obviously, not being a code expert, I couldn’t put the elements back on the page the right way, and I can’t figure out what’s wrong with the code I’m currently using.
<?php get_header(); ?>
<?php get_sidebar(); ?><!– Content –>
<div id=”content”><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!– Post –>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”post-date”><?php the_time(‘F d, Y’) ?></div>
<div class=”post-title”>
<h2><?php the_title(); ?></h2>
<div class=”post-title-info”>Posted by: <?php the_author() ?> : Category: <?php the_category(‘, ‘) ?></div>
<div class=”clear”></div></div>
<div class=”post-entry”>
<?php the_content(‘Read more…’); ?>
<?php edit_post_link(‘Edit this entry.’,”,”); ?>
<?php comments_template(); ?></div>
</div>
<!– /Post –>
<?php endwhile; ?>
<?php else : ?>
<!– Post –></div>
<div class=”post”><div class=”post-title”>
<h2>Not Found</h2>
</div>
<div class=”post-entry”>
<p>Sorry, but you are looking for something that isn’t here.</p>
</div>
</div>
<!– /Post –>
<?php endif; ?><div class=”clear”></div>
</div>
<!– /Content –><?php include (TEMPLATEPATH . ‘/sidebar-right.php’); ?>
Also, I don’t know how to set up the style_ie.php to make the IE version of the site exactly the same as the default (which I’ve been viewing through Firefox and works fine).
And the third tiny tweak I want to make is to remove the horizontal orange lines in the sidebar widgets.
Can anyone help? It’s probably 5 minutes worth of fixes and our site averages 500-600 users a day who are confused to death because of all the redirects. This has not been one of my better site launches. ??
sarah michelle
- The topic ‘Damsel in distress! Single.php sending comments to 404. Style_ie.php. HELP!’ is closed to new replies.