payment.php
3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* Checkout Payment Section
*
* This template can be overridden by copying it to yourtheme/woocommerce/checkout/payment.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer).
* will need to copy the new files to your theme to maintain compatibility. We try to do this.
* as little as possible, but it does happen. When this occurs the version of the template file will.
* be bumped and the readme will list any important changes.
*
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.5.0
*/
if (!defined('ABSPATH')) {
exit;
}
if (!is_ajax()) {
do_action('woocommerce_review_order_before_payment');
}
?>
<div id="payment" class="woocommerce-checkout-payment">
<?php if (WC()->cart->needs_payment()) : ?>
<h2 class="checkbox roboto_condensedbold font26 tvpayment_method">
Payment details <img class="icon_lock" src="<?php echo get_site_url() . '/wp-content/themes/reize/assets/images/lock.png' ?>" />
</h2>
<ul class="wc_payment_methods payment_methods methods">
<?php
if (!empty($available_gateways)) {
foreach ($available_gateways as $gateway) {
wc_get_template('checkout/payment-method.php', array('gateway' => $gateway));
}
} else {
echo '<li>' . apply_filters('woocommerce_no_available_payment_methods_message', WC()->customer->get_country() ? __('Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements.', 'woocommerce') : __('Please fill in your details above to see available payment methods.', 'woocommerce') ) . '</li>';
}
?>
</ul>
<?php endif; ?>
<div class="form-row place-order">
<noscript>
<?php _e('Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so.', 'woocommerce'); ?>
<br/><input type="submit" class="button alt" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e('Update totals', 'woocommerce'); ?>" />
</noscript>
<?php wc_get_template('checkout/terms.php'); ?>
<?php do_action('woocommerce_review_order_before_submit'); ?>
<?php
/*
* Remove it
*/
//echo apply_filters( 'woocommerce_order_button_html', '<input type="submit" class="button alt" name="woocommerce_checkout_place_order" id="place_order" value="' . esc_attr( $order_button_text ) . '" data-value="' . esc_attr( $order_button_text ) . '" />' );
?>
<?php do_action('woocommerce_review_order_after_submit'); ?>
<?php wp_nonce_field('woocommerce-process_checkout'); ?>
</div>
</div>
<?php
if (!is_ajax()) {
do_action('woocommerce_review_order_after_payment');
}