Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save JeroenSormani/87afe8432e05905587bd to your computer and use it in GitHub Desktop.
Save JeroenSormani/87afe8432e05905587bd to your computer and use it in GitHub Desktop.
Add a custom 'No shipping methods available' message
<?php
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 __( 'A minimum of 6 products is required. Add more products to complete your purchase' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment