Reorder Shipping Queue
-
Want to reorder the shipping list to show ups ground first and active first – tried this code in functions but no response
/******** start new function **********/
/* set default shipping */
function reset_default_shipping_method( $method, $available_methods ) {
$default_method = ‘wf_shipping_ups:03’; //provided here the service name which will selected default
if( array_key_exists($method, $available_methods ) )
return $default_method;
else
return $method;
}
add_filter(‘woocommerce_shipping_chosen_method’, ‘reset_default_shipping_method’, 10, 2);
/**** end new function ********/Is the wf_shipping_ups:03 correct? or should it be ….???? Tried GROUND, but that didnt work. ??
- The topic ‘Reorder Shipping Queue’ is closed to new replies.