id = 'checkout'; $this->label = _x( 'Checkout', 'Settings tab label', 'woocommerce' ); add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_sections' ) ); add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) ); add_action( 'woocommerce_admin_field_payment_gateways', array( $this, 'payment_gateways_setting' ) ); add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) ); } /** * Get sections * * @return array */ public function get_sections() { $sections = array( '' => __( 'Checkout Options', 'woocommerce' ) ); if ( ! defined( 'WC_INSTALLING' ) ) { // Load shipping methods so we can show any global options they may have $payment_gateways = WC()->payment_gateways->payment_gateways(); foreach ( $payment_gateways as $gateway ) { $title = empty( $gateway->method_title ) ? ucfirst( $gateway->id ) : $gateway->method_title; $sections[ strtolower( get_class( $gateway ) ) ] = esc_html( $title ); } } return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** * Get settings array * * @return array */ public function get_settings() { $settings = apply_filters( 'woocommerce_payment_gateways_settings', array( array( 'title' => __( 'Checkout Process', 'woocommerce' ), 'type' => 'title', 'id' => 'checkout_process_options' ), array( 'title' => __( 'Coupons', 'woocommerce' ), 'desc' => __( 'Enable the use of coupons', 'woocommerce' ), 'id' => 'woocommerce_enable_coupons', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => 'start', 'desc_tip' => __( 'Coupons can be applied from the cart and checkout pages.', 'woocommerce' ), 'autoload' => false ), array( 'desc' => __( 'Calculate coupon discounts sequentially', 'woocommerce' ), 'id' => 'woocommerce_calc_discounts_sequentially', 'default' => 'no', 'type' => 'checkbox', 'desc_tip' => __( 'When applying multiple coupons, apply the first coupon to the full price and the second coupon to the discounted price and so on.', 'woocommerce' ), 'checkboxgroup' => 'end', 'autoload' => false ), array( 'title' => _x( 'Checkout', 'Settings group label', 'woocommerce' ), 'desc' => __( 'Enable guest checkout', 'woocommerce' ), 'desc_tip' => __( 'Allows customers to checkout without creating an account.', 'woocommerce' ), 'id' => 'woocommerce_enable_guest_checkout', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => 'start', 'autoload' => false ), array( 'desc' => __( 'Force secure checkout', 'woocommerce' ), 'id' => 'woocommerce_force_ssl_checkout', 'default' => 'no', 'type' => 'checkbox', 'checkboxgroup' => '', 'show_if_checked' => 'option', 'desc_tip' => __( 'Force SSL (HTTPS) on the checkout pages (a SSL Certificate is required).', 'woocommerce' ), ), array( 'desc' => __( 'Force HTTP when leaving the checkout', 'woocommerce' ), 'id' => 'woocommerce_unforce_ssl_checkout', 'default' => 'no', 'type' => 'checkbox', 'checkboxgroup' => 'end', 'show_if_checked' => 'yes', ), array( 'type' => 'sectionend', 'id' => 'checkout_process_options'), array( 'title' => __( 'Checkout Pages', 'woocommerce' ), 'desc' => __( 'These pages need to be set so that WooCommerce knows where to send users to checkout.', 'woocommerce' ), 'type' => 'title', 'id' => 'checkout_page_options' ), array( 'title' => __( 'Cart Page', 'woocommerce' ), 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_cart_shortcode_tag', 'woocommerce_cart' ) . ']', 'id' => 'woocommerce_cart_page_id', 'type' => 'single_select_page', 'default' => '', 'class' => 'wc-enhanced-select-nostd', 'css' => 'min-width:300px;', 'desc_tip' => true, ), array( 'title' => __( 'Checkout Page', 'woocommerce' ), 'desc' => __( 'Page contents:', 'woocommerce' ) . ' [' . apply_filters( 'woocommerce_checkout_shortcode_tag', 'woocommerce_checkout' ) . ']', 'id' => 'woocommerce_checkout_page_id', 'type' => 'single_select_page', 'default' => '', 'class' => 'wc-enhanced-select-nostd', 'css' => 'min-width:300px;', 'desc_tip' => true, ), array( 'title' => __( 'Terms and Conditions', 'woocommerce' ), 'desc' => __( 'If you define a "Terms" page the customer will be asked if they accept them when checking out.', 'woocommerce' ), 'id' => 'woocommerce_terms_page_id', 'default' => '', 'class' => 'wc-enhanced-select-nostd', 'css' => 'min-width:300px;', 'type' => 'single_select_page', 'desc_tip' => true, 'autoload' => false ), array( 'type' => 'sectionend', 'id' => 'checkout_page_options' ), array( 'title' => __( 'Checkout Endpoints', 'woocommerce' ), 'type' => 'title', 'desc' => __( 'Endpoints are appended to your page URLs to handle specific actions during the checkout process. They should be unique.', 'woocommerce' ), 'id' => 'account_endpoint_options' ), array( 'title' => __( 'Pay', 'woocommerce' ), 'desc' => __( 'Endpoint for the Checkout → Pay page', 'woocommerce' ), 'id' => 'woocommerce_checkout_pay_endpoint', 'type' => 'text', 'default' => 'order-pay', 'desc_tip' => true, ), array( 'title' => __( 'Order Received', 'woocommerce' ), 'desc' => __( 'Endpoint for the Checkout → Order Received page', 'woocommerce' ), 'id' => 'woocommerce_checkout_order_received_endpoint', 'type' => 'text', 'default' => 'order-received', 'desc_tip' => true, ), array( 'title' => __( 'Add Payment Method', 'woocommerce' ), 'desc' => __( 'Endpoint for the Checkout → Add Payment Method page', 'woocommerce' ), 'id' => 'woocommerce_myaccount_add_payment_method_endpoint', 'type' => 'text', 'default' => 'add-payment-method', 'desc_tip' => true, ), array( 'type' => 'sectionend', 'id' => 'checkout_endpoint_options' ), array( 'title' => __( 'Payment Gateways', 'woocommerce' ), 'desc' => __( 'Installed gateways are listed below. Drag and drop gateways to control their display order on the frontend.', 'woocommerce' ), 'type' => 'title', 'id' => 'payment_gateways_options' ), array( 'type' => 'payment_gateways' ), array( 'type' => 'sectionend', 'id' => 'payment_gateways_options' ), ) ); return apply_filters( 'woocommerce_get_settings_' . $this->id, $settings ); } /** * Output the settings */ public function output() { global $current_section; // Load shipping methods so we can show any global options they may have $payment_gateways = WC()->payment_gateways->payment_gateways(); if ( $current_section ) { foreach ( $payment_gateways as $gateway ) { if ( strtolower( get_class( $gateway ) ) == strtolower( $current_section ) ) { $gateway->admin_options(); break; } } } else { $settings = $this->get_settings(); WC_Admin_Settings::output_fields( $settings ); } } /** * Output payment gateway settings. */ public function payment_gateways_setting() { ?> '', 'name' => __( 'Gateway', 'woocommerce' ), 'id' => __( 'Gateway ID', 'woocommerce' ), 'status' => __( 'Enabled', 'woocommerce' ) ) ); foreach ( $columns as $key => $column ) { echo ''; } ?> payment_gateways->payment_gateways() as $gateway ) { echo ''; foreach ( $columns as $key => $column ) { switch ( $key ) { case 'sort' : echo ''; break; case 'name' : echo ''; break; case 'id' : echo ''; break; case 'status' : echo ''; break; default : do_action( 'woocommerce_payment_gateways_setting_column_' . $key, $gateway ); break; } } echo ''; } ?>
' . esc_html( $column ) . '
' . $gateway->get_title() . ' ' . esc_html( $gateway->id ) . ' '; if ( $gateway->enabled == 'yes' ) echo '' . __ ( 'Yes', 'woocommerce' ) . ''; else echo '-'; echo '
get_settings() ); $wc_payment_gateways->process_admin_options(); } else { foreach ( $wc_payment_gateways->payment_gateways() as $gateway ) { if ( $current_section === sanitize_title( get_class( $gateway ) ) ) { do_action( 'woocommerce_update_options_payment_gateways_' . $gateway->id ); $wc_payment_gateways->init(); } } } } } endif; return new WC_Settings_Payment_Gateways();