2017-05-03 6 views
-1

Ich habe ähnliche Fragen durchsucht und versucht, die Antworten zu implementieren, aber nichts hat mit diesem Formular funktioniert.Umleiten von Formular ausfüllen zu Thankyou Seite

Ich möchte einfach das folgende Formular nach Fertigstellung an eine Dankes-Seite senden.

Jede Hilfe wird geschätzt.

Der Formularcode ist wie folgt:

<?php 
$post_author_id   = get_post_field('post_author', $post->ID); 
$user_email    = get_the_author_meta('user_email', $post_author_id); 
?> 
<div class="col-md-12" > 
    <div class="well-box" id="inquiry"> 
     <h2><?php esc_html_e('Send Enquiry to Vendor','weddingvendor'); ?></h2> 
     <p><?php esc_html_e('Fill in your details and a Venue Specialist will get back to you shortly.','weddingvendor'); ?></p> 
     <form class="ajax-auth" id="book-now-box" method="post"> 
     <?php wp_nonce_field('ajax-vendor-send-me', 'security'); ?> 


     <!-- Text input--> 
     <div class="form-group"> 
      <label class="control-label" for="name"><?php esc_html_e('Name','weddingvendor'); ?>:<span class="required">*</span></label> 
      <div class=""> 
      <input id="name" name="name" type="text" minlength="6" placeholder="<?php esc_html_e('Name','weddingvendor'); ?>" class="form-control input-md" required> 
      </div> 
     </div> 

     <!-- Text input--> 
     <div class="form-group"> 
      <label class="control-label" for="phone"><?php esc_html_e('Phone','weddingvendor'); ?>:<span class="required">*</span></label> 
      <div class=""> 
      <input id="phone" name="phone" type="text" minlength="10" minlength="12" placeholder="<?php esc_html_e('Phone','weddingvendor'); ?>" class="form-control input-md" required > 
      <span class="help-block"> </span> </div> 
     </div> 

     <!-- Text input--> 
     <div class="form-group"> 
      <label class="control-label" for="email"><?php esc_html_e('Email','weddingvendor'); ?>:<span class="required">*</span></label> 
      <div class=""> 
      <input id="email" name="email" type="email" placeholder="<?php esc_html_e('Email','weddingvendor'); ?>" class="form-control input-md" required> 
      </div> 
     </div> 

     <!-- Select Basic --> 
     <!-- Text input--> 


     <div class="form-group"> 
      <label class="control-label" for="guest"><?php esc_html_e('Number of Guests','weddingvendor'); ?>:<span class="required">*</span></label> 
      <div class=""> 
      <select id="guest" name="guest" class="form-control"> 
       <option value="1 to 50">1 to 50</option> 
       <option value="51 to 100">51 to 100</option> 
       <option value="101 to 200">101 to 200</option> 
       <option value="201 to 500">201 to 500</option> 
       <option value="501 to more">501 to more</option> 
      </select> 
      <input type="hidden" id="user_email_id" value="<?php echo $user_email;?>" /> 
      </div> 
     </div> 
     <!-- Multiple Radios --> 
     <div class="form-group"> 
      <label class="control-label"><?php esc_html_e('Send me info via','weddingvendor'); ?></label> 
      <div class="checkbox checkbox-success"> 
      <input type="checkbox" name="sendme" id="checkbox-0" value="Email" class="styled"> 
      <label for="checkbox-0" class="control-label"><?php esc_html_e('Email','weddingvendor'); ?></label> 
      </div> 
      <div class="checkbox checkbox-success"> 
      <input type="checkbox" name="sendme" id="checkbox-1" value="Call" class="styled" > 
      <label for="checkbox-1" class="control-label"> <?php esc_html_e('Need Call back','weddingvendor'); ?> </label> 
      </div> 
     </div> 
     <div class="form-group"> 
      <input type="submit" name="book-now-on" id="book-now-on" value="<?php esc_html_e('Book Now','weddingvendor'); ?>" class="btn tp-btn-default tp-btn-lg btn-block" /> 
     </div> 
     <div class="status"></div> 
     </form> 
    </div> 
</div> 
+0

Be beschreibender und am meisten impo Bitte identifizieren Sie den Fehler. –

+0

Wo ist dein Formular? Ich sehe schließen, aber kein öffnendes Tag –

Antwort