I am dropping this code into the child functions.php but not changing the wording of this on the checkout page –> http://prnt.sc/ay6p52
add_filter( 'woocommerce_no_shipping_available_html', 'my_custom_no_shipping_message' );
add_filter( 'woocommerce_cart_no_shipping_available_html', 'my_custom_no_shipping_message' );
function my_custom_no_shipping_message( $message ) {
return __( 'Please select your country to get the proper shipping cost' );
}
anything else I need to do???
Thank you…