Bump. I just need to change the Shipping method value for a string of text.
Hello,
If you are trying to change the name of the shipping method, you can change the Method title in WooCommerce > Settings > Shipping > Shipping Zones > [Your Shipping Zone]
Link to image: https://snipboard.io/m0Zfun.jpg
I’m trying to change only the text inside the review order in checkout, but the name to stay like it is, also is there a way to make zip code not a required field? Thank you for your answer
I tried using this code for removing the zip code required but it’s not working.
I’m using OceanWP theme
// Make zip/postcode field optional
add_filter( 'woocommerce_default_address_fields' , 'QuadLayers_optional_postcode_checkout' );
function QuadLayers_optional_postcode_checkout( $p_fields ) {
$p_fields['postcode']['required'] = false;
return $p_fields;
}
@dantemasamune
To disable WooCommerce postcode validation, I recommend following the guide provided here
Regarding the text you want to change at checkout, kindly provide a screenshot of that here using https://imgbb.com
Hi @dantemasamune
We’ve not heard back from you in a while, so I’m marking this thread as resolved. If you have further questions, please feel free to open a new topic.