Warning: This method has been deprecated.
WC_Admin_Setup_Wizard::get_wizard_shipping_methods( string $country_code, string $currency_code )
Get shipping methods based on country code.
Description Description
Parameters Parameters
- $country_code
-
(Required) Country code.
- $currency_code
-
(Required) Currency code.
Return Return
(array)
Source Source
File: includes/admin/class-wc-admin-setup-wizard.php
protected function get_wizard_shipping_methods( $country_code, $currency_code ) {
$shipping_methods = array(
'flat_rate' => array(
'name' => __( 'Flat Rate', 'woocommerce' ),
'description' => __( 'Set a fixed price to cover shipping costs.', 'woocommerce' ),
'settings' => array(
'cost' => array(
'type' => 'text',
'default_value' => __( 'Cost', 'woocommerce' ),
'description' => __( 'What would you like to charge for flat rate shipping?', 'woocommerce' ),
'required' => true,
),
),
),
'free_shipping' => array(
'name' => __( 'Free Shipping', 'woocommerce' ),
'description' => __( "Don't charge for shipping.", 'woocommerce' ),
),
);
return $shipping_methods;
}
Changelog Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |