You appear to be a bot. Output may be restricted
Description
Implement "woocommerce_cart_no_shipping_available_html"
Usage
$string = OIK_Shipping::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 overridden
Source
File name: oik-weightcountry-shipping/oik-weightcountry-shipping.php
Lines:
1 to 6 of 6
function no_shipping_available( $html ) { if ( $this->countrygroup_title && $this->countrygroup_title != $this->title ) { $html = $this->countrygroup_title; } return( $html ); }