id = 'shipping'; $this->label = __( 'Shipping', '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_shipping_methods', array( $this, 'shipping_methods_setting' ) ); add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) ); } /** * Get sections * * @return array */ public function get_sections() { $sections = array( '' => __( 'Shipping Options', 'woocommerce' ) ); // Load shipping methods so we can show any global options they may have $shipping_methods = WC()->shipping->load_shipping_methods(); foreach ( $shipping_methods as $method ) { if ( ! $method->has_settings() ) continue; $title = empty( $method->method_title ) ? ucfirst( $method->id ) : $method->method_title; $sections[ strtolower( get_class( $method ) ) ] = esc_html( $title ); } return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections ); } /** * Get settings array * * @return array */ public function get_settings() { return apply_filters('woocommerce_shipping_settings', array( array( 'title' => __( 'Shipping Options', 'woocommerce' ), 'type' => 'title', 'id' => 'shipping_options' ), array( 'title' => __( 'Shipping Calculations', 'woocommerce' ), 'desc' => __( 'Enable shipping', 'woocommerce' ), 'id' => 'woocommerce_calc_shipping', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => 'start' ), array( 'desc' => __( 'Enable the shipping calculator on the cart page', 'woocommerce' ), 'id' => 'woocommerce_enable_shipping_calc', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => '', 'autoload' => false ), array( 'desc' => __( 'Hide shipping costs until an address is entered', 'woocommerce' ), 'id' => 'woocommerce_shipping_cost_requires_address', 'default' => 'no', 'type' => 'checkbox', 'checkboxgroup' => 'end', 'autoload' => false ), array( 'title' => __( 'Shipping Display Mode', 'woocommerce' ), 'desc' => __( 'This controls how multiple shipping methods are displayed on the frontend.', 'woocommerce' ), 'id' => 'woocommerce_shipping_method_format', 'default' => '', 'type' => 'radio', 'options' => array( '' => __( 'Display shipping methods with "radio" buttons', 'woocommerce' ), 'select' => __( 'Display shipping methods in a dropdown', 'woocommerce' ), ), 'desc_tip' => true, 'autoload' => false ), array( 'title' => __( 'Shipping Destination', 'woocommerce' ), 'desc' => __( 'This controls which shipping address is used by default.', 'woocommerce' ), 'id' => 'woocommerce_ship_to_destination', 'default' => 'shipping', 'type' => 'radio', 'options' => array( 'shipping' => __( 'Default to shipping address', 'woocommerce' ), 'billing' => __( 'Default to billing address', 'woocommerce' ), 'billing_only' => __( 'Only ship to the users billing address', 'woocommerce' ), ), 'autoload' => false, 'desc_tip' => true, 'show_if_checked' => 'option', ), array( 'title' => __( 'Restrict shipping to Location(s)', 'woocommerce' ), 'desc' => sprintf( __( 'Choose which countries you want to ship to, or choose to ship to all locations you sell to.', 'woocommerce' ), admin_url( 'admin.php?page=wc-settings&tab=general' ) ), 'id' => 'woocommerce_ship_to_countries', 'default' => '', 'type' => 'select', 'class' => 'chosen_select', 'desc_tip' => false, 'options' => array( '' => __( 'Ship to all countries you sell to', 'woocommerce' ), 'all' => __( 'Ship to all countries', 'woocommerce' ), 'specific' => __( 'Ship to specific countries only', 'woocommerce' ) ) ), array( 'title' => __( 'Specific Countries', 'woocommerce' ), 'desc' => '', 'id' => 'woocommerce_specific_ship_to_countries', 'css' => '', 'default' => '', 'type' => 'multi_select_countries' ), array( 'type' => 'shipping_methods', ), array( 'type' => 'sectionend', 'id' => 'shipping_options' ), )); // End shipping settings } /** * Output the settings */ public function output() { global $current_section; // Load shipping methods so we can show any global options they may have $shipping_methods = WC()->shipping->load_shipping_methods(); if ( $current_section ) { foreach ( $shipping_methods as $method ) { if ( strtolower( get_class( $method ) ) == strtolower( $current_section ) && $method->has_settings() ) { $method->admin_options(); break; } } } else { $settings = $this->get_settings(); WC_Admin_Settings::output_fields( $settings ); } } /** * Output shipping method settings. * * @access public * @return void */ public function shipping_methods_setting() { $default_shipping_method = esc_attr( get_option('woocommerce_default_shipping_method') ); ?> shipping->load_shipping_methods() as $key => $method ) { echo ''; } ?>
 
/> [?]
id, false ) . ' /> ' . $method->get_title() . ' ' . $method->id . ' '; if ( $method->enabled == 'yes' ) echo '' . __ ( 'Enabled', 'woocommerce' ) . ''; else echo '-'; echo ' '; if ( $method->has_settings ) { echo '' . __( 'Settings', 'woocommerce' ) . ''; } echo '
get_settings(); WC_Admin_Settings::save_fields( $settings ); WC()->shipping->process_admin_options(); } elseif ( class_exists( $current_section ) ) { $current_section_class = new $current_section(); do_action( 'woocommerce_update_options_' . $this->id . '_' . $current_section_class->id ); } } } endif; return new WC_Settings_Shipping();