payment-method.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  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. * @author WooThemes
  15. * @package WooCommerce/Templates
  16. * @version 2.3.0
  17. */
  18. if ( ! defined( 'ABSPATH' ) ) {
  19. exit;
  20. }
  21. ?>
  22. <li class="wc_payment_method payment_method_<?php echo $gateway->id; ?>">
  23. <input id="payment_method_<?php echo $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. <label for="payment_method_<?php echo $gateway->id; ?>">
  25. <?php echo $gateway->get_title(); ?> <?php echo $gateway->get_icon(); ?>
  26. </label>
  27. <?php if ( $gateway->has_fields() || $gateway->get_description() ) : ?>
  28. <div class="payment_box payment_method_<?php echo $gateway->id; ?>" <?php if ( ! $gateway->chosen ) : ?>style="display:none;"<?php endif; ?>>
  29. <?php $gateway->payment_fields(); ?>
  30. </div>
  31. <?php endif; ?>
  32. </li>