cart-errors.php
5 years ago
form-billing.php
5 years ago
form-checkout.php
5 years ago
form-coupon.php
3 years ago
form-login.php
5 years ago
form-pay.php
2 years ago
form-shipping.php
5 years ago
form-verify-email.php
2 years ago
order-receipt.php
5 years ago
order-received.php
2 years ago
payment-method.php
5 years ago
payment.php
2 years ago
review-order.php
5 years ago
terms.php
4 years ago
thankyou.php
2 years ago
payment-method.php
34 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Output a single payment method |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/woocommerce/checkout/payment-method.php. |
| 6 | * |
| 7 | * HOWEVER, on occasion WooCommerce will need to update template files and you |
| 8 | * (the theme developer) will need to copy the new files to your theme to |
| 9 | * maintain compatibility. We try to do this as little as possible, but it does |
| 10 | * happen. When this occurs the version of the template file will be bumped and |
| 11 | * the readme will list any important changes. |
| 12 | * |
| 13 | * @see https://docs.woocommerce.com/document/template-structure/ |
| 14 | * @package WooCommerce\Templates |
| 15 | * @version 3.5.0 |
| 16 | */ |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit; |
| 20 | } |
| 21 | ?> |
| 22 | <li class="wc_payment_method payment_method_<?php echo esc_attr( $gateway->id ); ?>"> |
| 23 | <input id="payment_method_<?php echo esc_attr( $gateway->id ); ?>" type="radio" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->chosen, true ); ?> data-order_button_text="<?php echo esc_attr( $gateway->order_button_text ); ?>" /> |
| 24 | |
| 25 | <label for="payment_method_<?php echo esc_attr( $gateway->id ); ?>"> |
| 26 | <?php echo $gateway->get_title(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?> <?php echo $gateway->get_icon(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?> |
| 27 | </label> |
| 28 | <?php if ( $gateway->has_fields() || $gateway->get_description() ) : ?> |
| 29 | <div class="payment_box payment_method_<?php echo esc_attr( $gateway->id ); ?>" <?php if ( ! $gateway->chosen ) : /* phpcs:ignore Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace */ ?>style="display:none;"<?php endif; /* phpcs:ignore Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace */ ?>> |
| 30 | <?php $gateway->payment_fields(); ?> |
| 31 | </div> |
| 32 | <?php endif; ?> |
| 33 | </li> |
| 34 |