Forum
Checkout as Guest
Hi!
So I'm using the customer_create_paswordless.html template and once someone submits the order and pays the email that my client recieves doesn't pull through the address that was entered on the form. Can you suggest any errors that I have done?
Thank you!
<div class="col_two_third ">
<div class="well well-lg nobottommargin" style="background-color: transparent">
<h3>Checkout</h3>
<perch:form id="register" method="post" app="perch_shop">
<fieldset>
<div>
<perch:label for="first_name">First name</perch:label>
<perch:input type="text" id="first_name" required="true" label="First name" class="required form-control input-block-level" />
<perch:error for="first_name" type="required">Please add your name</perch:error>
</div>
<div>
<perch:label for="last_name">Last name</perch:label>
<perch:input type="text" id="last_name" required="true" label="Last name" class="required form-control input-block-level" />
<perch:error for="last_name" type="required">Please add your name</perch:error>
</div>
<div>
<perch:label for="email">Email</perch:label>
<perch:input type="email" id="email" required="true" placeholder="you@company.com" helper="PerchMembers_Members::check_email" class="required form-control input-block-level"/>
<perch:error for="email" type="required">Please add your email address</perch:error>
<perch:error for="email" type="helper">That email address is already in use</perch:error>
<perch:input type="hidden" id="password" value="__auto__" />
</div>
</fieldset>
<fieldset>
<legend>Shipping address</legend>
<div>
<perch:label for="address_1">Address 1</perch:label>
<perch:input type="text" id="address_1" required="true" label="Address 1" class="required form-control input-block-level"/>
<perch:error for="address_1" type="required">Please add the first line of your address</perch:error>
</div>
<div>
<perch:label for="address_2">Address 2</perch:label>
<perch:input type="text" id="address_2" label="Address 2" class="form-control input-block-level"/>
</div>
<div>
<perch:label for="postcode">Postal code</perch:label>
<perch:input type="text" id="postcode" label="Postal code" class="required form-control input-block-level"/>
<perch:error for="postcode" type="required">Please add your postcode</perch:error>
</div>
<div>
<perch:label for="city">City</perch:label>
<perch:input type="text" id="city" label="City" class="form-control input-block-level"/>
</div>
<div>
<perch:label for="county">County</perch:label>
<perch:input type="text" id="county" label="County" class="form-control input-block-level"/>
</div>
</fieldset>
<div>
<perch:input type="submit" value="Proceed to Payment" class="button button-3d button-black nomargin"/>
</div>
<perch:success>
<p>Thanks!</p>
<a href="checkout-guest.php" class="button button-3d button-black nomargin"> Enter Billing Information</a>
</perch:success>
</perch:form>
</div>
</div>
Can you post your diagnostics report please?
Is there any progress on this?
Are you following the guide in the documentation?