DETAILS
1st wordpress project ni nko
it's a page with a contact form
(using Contact Form 7 plugin) with the code:
Code:
<p>[text* name 25/] Your Name</p>
<p>[email* email 25/] Your Email</p>
<p>Message<br/>[textarea* message 30x5]</p>
<span class="req">All fields required</span>
<p>[submit "Send"]</p>
PROBLEM
the problem is that
WHILE the NAME is VALID there is a problem with the page EXCEPT when ALL_FIELDS are VALID
ie.
name is valid, name+email is valid, name+message is valid - page problems
when name+email+message is valid - no problems; message sent
it is inside
page.php
Code:
<!-- header -->
<div id="content">
<?php
echo 'page';
if ( have_posts() ) {
the_post();
?>
<div class="left">
<p><?php the_title(); ?></p>
</div><!-- end left -->
<div class="right">
<div><?php the_content(); ?></div>
</div><!-- end right -->
<?php
}
?>
<div class="clear"></div>
</div>
<!-- footer -->
IMAGES
i'm so frustrated with this problem
i'm still new to wordpress and i have yet to understand the twentyten theme
so you can see how new i am to wordpress
any help appreciated
EDIT
this problem is not present when using TWENTYTEN THEME