HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/shoetique/wp-content/themes/north-wp/woocommerce/checkout/payment.php
<?php
/**
 * Checkout Payment Section
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.4.7
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>

<?php if ( ! is_ajax() ) : ?>
<div class="small-12 medium-6 columns">
	<?php if ( WC()->cart->coupons_enabled() ) { ?>
		<div class="login-section">
			<aside class="coupon-container margin">
				<div class="smalltitle"><?php _e('Have a coupon?', 'north'); ?></div>
					<?php
						wc_get_template('checkout/form-coupon.php', array(
							'message' => __(' ', 'north'),
							'redirect' => get_permalink(wc_get_page_id('checkout'))
						));
					?> 
			</aside>
		</div>
	<?php } ?>
	<div class="login-section">
		<?php do_action( 'woocommerce_review_order_before_payment' ); ?>
<?php endif; ?>
		
		<div id="payment" class="woocommerce-checkout-payment">
			<?php if ( WC()->cart->needs_payment() ) : ?>
			<div class="smalltitle"><?php _e( 'Payment Method','north' ); ?></div>
			<ul class="payment_methods methods">
				<?php
					if ( ! empty( $available_gateways ) ) {
						foreach ( $available_gateways as $gateway ) {
							wc_get_template( 'checkout/payment-method.php', array( 'gateway' => $gateway ) );
						}
					} else {
						if ( ! WC()->customer->get_country() ) {
							$no_gateways_message = __( 'Please fill in your details above to see available payment methods.', 'woocommerce' );
						} else {
							$no_gateways_message = __( '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' );
						}
		
						echo '<li>' . apply_filters( 'woocommerce_no_available_payment_methods_message', $no_gateways_message ) . '</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 wp_nonce_field( 'woocommerce-process_checkout' ); ?>
		
				<?php do_action( 'woocommerce_review_order_before_submit' ); ?>

				<?php if ( wc_get_page_id( 'terms' ) > 0 && apply_filters( 'woocommerce_checkout_show_terms', true ) ) : ?>
					<p class="form-row terms">
						<input type="checkbox" class="input-checkbox custom_check" name="terms" <?php checked( apply_filters( 'woocommerce_terms_is_checked_default', isset( $_POST['terms'] ) ), true ); ?> id="terms" />
						<label for="terms" class="checkbox custom_label"><?php printf( __( 'I&rsquo;ve read and accept the <a href="%s" target="_blank">terms &amp; conditions</a>', 'woocommerce' ),  esc_url( wc_get_page_permalink( 'terms' ) ) ); ?></label>
					</p>
				<?php endif; ?>
				
				<?php 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' ); ?>
		
			</div>
		</div>
	
<?php if ( ! is_ajax() ) : ?>
		<?php do_action( 'woocommerce_review_order_after_payment' ); ?>
	</div>
</div>
<?php endif; ?>