woocommerce_no_shipping_available_html
Usage
add_filter( 'woocommerce_no_shipping_available_html', 'wp_kama_woocommerce_no_shipping_available_html_filter' );
/**
* Function for `woocommerce_no_shipping_available_html` filter-hook.
*
* @param $__
*
* @return
*/
function wp_kama_woocommerce_no_shipping_available_html_filter( $__ ){
// filter...
return $__;
}
- $__
- -
Where the hook is called
In file: /templates/cart/cart-shipping.php
woocommerce_no_shipping_available_html
woocommerce/templates/cart/cart-shipping.php 67
echo wp_kses_post( apply_filters( 'woocommerce_no_shipping_available_html', __( 'There are no shipping options available. Please ensure that your address has been entered correctly, or contact us if you need any help.', 'woocommerce' ) ) );