Created
          February 24, 2017 11:13 
        
      - 
      
- 
        Save rynaldos-zz/66bf8175948d79b7c7985d3f4ba7f808 to your computer and use it in GitHub Desktop. 
    [WooCommerce] Change the "no shipping methods available" message
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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 __( 'your_custom_message_goes_here' ); | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment