PHP File Manager
Editing File: checkout.php
<div id="content"> <div class="checkout-page"> <div class="col-lg-8 col-lg-offset-2"> <h1 class="text-center">Order checkout</h1> <ul class="row" id="checkout-steps"> <?php foreach(array(1 => 'Your Order', 2 => 'Delivery & Billing', 3 => 'Review & Payment', 4 => 'Complete') as $step_number => $step_label): ?> <li class="col-sm-3 step-block<?php echo (($delivery_step >= $step_number) ? ' highlighted-step' : '') . (($delivery_step == $step_number) ? ' current-step' : ''); ?>"><span class="step"><?php echo $step_number; ?></span><span class="step-label"><?php echo $step_label; ?></span></li> <?php endforeach; ?> </ul> <?php echo $this->common->getResponseMessage(true); ?> <div class="checkout-inner"> <?php $this->load->view('website/checkout/' . $inner_template_name); ?> </div> <?php if(false): ?> <?php if($this->uri->segment(2) == 'new-customer'): ?> <div class="row split-row"> <h3>Account creation</h3> <div class="row text-center"> <div class="col-sm-6 col-sm-offset-3"> <div class="row"> <div class="col-sm-6"> <p><strong>Password</strong></p> <input type="password" name="customer_password" value="<?php echo ($this->input->post('password')) ? $this->input->post('password') : ''; ?>" autocomplete="off" class="form-control" /> </div> <div class="col-sm-6"> <p><strong>Confirm password</strong></p> <input type="password" name="confirm_customer_password" value="" autocomplete="off" class="form-control" /> </div> </div> </div> </div> <p class="help-block text-center">This will be used to log into your new account</p> </div> <?php endif; ?> <div class="row split-row"> <h3>Additional notes</h3> <div class="row"> <div class="col-sm-10 col-sm-offset-1 col-lg-6 col-lg-offset-3"> <p class="text-center">If you have any notes about your order that you would like to let us know, you may use the text field below.</p> <textarea name="order_notes" rows="6" class="form-control span8"><?php echo ($this->input->post('order_notes') !== NULL) ? input_value($this->input->post('order_notes')) : ''; ?></textarea> </div> </div> </div> <div class="row split-row"> <h3>Confirmation</h3> <div class="row"> <div class="col-sm-6 col-sm-offset-3 order-confirmation"> <label class="checkbox-inline"> <input type="checkbox" id="order-agreed" name="order_confirm" value="1" autocomplete="off"<?php echo ($this->input->post('order_confirm')) ? ' checked="checked"' : ''; ?> /> <span>I confirm that I have read the <a href="/terms-and-conditions" target="_blank">Terms and Conditions</a></span> </label> <p> <button type="submit" class="btn btn-theme btn-lg" name="submit_order" value="1">Place order</button> </p> </div> </div> </div> <?php endif; ?> </div> <div class="clearfix"></div> </div> </div>
Cancel