![]() System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/www/product/wp-content/plugins/woocommerce/templates/checkout/ |
Upload File : |
<?php /** * Checkout Payment Section * * @author WooThemes * @package WooCommerce/Templates * @version 2.3.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php if ( ! is_ajax() ) : ?> <?php do_action( 'woocommerce_review_order_before_payment' ); ?> <?php endif; ?> <div id="payment" class="woocommerce-checkout-payment"> <?php if ( WC()->cart->needs_payment() ) : ?> <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 '<p>' . apply_filters( 'woocommerce_no_available_payment_methods_message', $no_gateways_message ) . '</p>'; } ?> </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 _e( 'Update totals', 'woocommerce' ); ?>" /></noscript> <?php wp_nonce_field( 'woocommerce-process_checkout' ); ?> <?php do_action( 'woocommerce_review_order_before_submit' ); ?> <?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 if ( wc_get_page_id( 'terms' ) > 0 && apply_filters( 'woocommerce_checkout_show_terms', true ) ) : ?> <p class="form-row terms"> <label for="terms" class="checkbox"><?php printf( __( 'I’ve read and accept the <a href="%s" target="_blank">terms & conditions</a>', 'woocommerce' ), esc_url( wc_get_page_permalink( 'terms' ) ) ); ?></label> <input type="checkbox" class="input-checkbox" name="terms" <?php checked( apply_filters( 'woocommerce_terms_is_checked_default', isset( $_POST['terms'] ) ), true ); ?> id="terms" /> </p> <?php endif; ?> <?php do_action( 'woocommerce_review_order_after_submit' ); ?> </div> <div class="clear"></div> </div> <?php if ( ! is_ajax() ) : ?> <?php do_action( 'woocommerce_review_order_after_payment' ); ?> <?php endif; ?>