You appear to be a bot. Output may be restricted
Description
Implement "woocommerce_cart_no_shipping_available_html"
Usage
$string = OIK_Shipping_Pro::no_shipping_available( $html );
Parameters
- $html
- ( string ) required – message to be displayed when there are no shipping methods available
Returns
string Updated with our own version taken from the rates if the default has been overriddenSource
File name: oik-weightcountry-shipping-pro/class-oik-shipping-pro.phpLines:
1 to 7 of 7
function no_shipping_available( $html ) { if ( $this->countrygroup_title && $this->countrygroup_title != $this->title ) { $html = $this->countrygroup_title; } return( $html ); }View on GitHub