# sellkit/1.6.2/includes/elementor/modules/checkout/templates/payment-method.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.6.2. 36 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.6.2/code/includes/elementor/modules/checkout/templates/payment-method.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.6.2/raw/includes/elementor/modules/checkout/templates/payment-method.php
- Modified: 2023-04-13T06:28:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/1.6.2/code/includes/elementor/modules/checkout/templates/payment-method.php#L10-L20`.

```php
<?php
/**
 * Output a single payment method
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/checkout/payment-method.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         https://docs.woocommerce.com/document/template-structure/
 * @package     WooCommerce\Templates
 * @version     3.5.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<li class="wc_payment_method payment_method_<?php echo esc_attr( $gateway->id ); ?>">
	<label class="wrp">
		<input id="payment_method_<?php echo esc_attr( $gateway->id ); ?>" type="radio" class="input-radio sellkit-one-page-pay-method" 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 ); ?>" />
		<span class="checkmark"></span>
		<label for="payment_method_<?php echo esc_attr( $gateway->id ); ?>" >
			<?php echo $gateway->get_title(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?> <?php echo $gateway->get_icon(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?>
		</label>
	</label>
</li>
<?php if ( $gateway->has_fields() || $gateway->get_description() ) : ?>
	<div class="sellkit_payment_box sellkit-checkout-widget-divider" >
		<?php $gateway->payment_fields(); ?>
	</div>
<?php endif; ?>

```
