default shipping method if the count of methods changes
This commit is contained in:
parent
c4f767aec1
commit
9bc06824be
|
@ -214,12 +214,11 @@ class WC_Shipping {
|
||||||
if ( ! empty( $woocommerce->session->chosen_shipping_method ) )
|
if ( ! empty( $woocommerce->session->chosen_shipping_method ) )
|
||||||
$chosen_method = $woocommerce->session->chosen_shipping_method;
|
$chosen_method = $woocommerce->session->chosen_shipping_method;
|
||||||
|
|
||||||
$woocommerce->session->available_methods_count = sizeof( $_available_methods );
|
// Set method if we have mehtods available
|
||||||
|
|
||||||
if ( sizeof( $_available_methods ) > 0 ) {
|
if ( sizeof( $_available_methods ) > 0 ) {
|
||||||
|
|
||||||
// If not set, set a default
|
// If not set, not available, or available methods have changed, set to the default option
|
||||||
if ( empty( $chosen_method ) || ! isset( $_available_methods[ $chosen_method ] ) ) {
|
if ( empty( $chosen_method ) || ! isset( $_available_methods[ $chosen_method ] ) || $woocommerce->session->available_methods_count != sizeof( $_available_methods ) ) {
|
||||||
|
|
||||||
$chosen_method = apply_filters( 'woocommerce_shipping_chosen_method', get_option( 'woocommerce_default_shipping_method' ), $_available_methods );
|
$chosen_method = apply_filters( 'woocommerce_shipping_chosen_method', get_option( 'woocommerce_default_shipping_method' ), $_available_methods );
|
||||||
|
|
||||||
|
@ -258,6 +257,8 @@ class WC_Shipping {
|
||||||
$this->shipping_label = $_available_methods[ $chosen_method ]->label;
|
$this->shipping_label = $_available_methods[ $chosen_method ]->label;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$woocommerce->session->available_methods_count = sizeof( $_available_methods );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue