You appear to be a bot. Output may be restricted
Description
Implement "woocommerce_cart_no_shipping_available_html"
Usage
$string = OIK_Weight_Zone_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 overriddenSource
File name: oik-weight-zone-shipping/class-oik-weight-zone-shipping.phpLines:
1 to 6 of 6
function no_shipping_available( $html ) { if ( $this->shippingrate_title && $this->shippingrate_title != $this->title ) { $html = $this->shippingrate_title; } return( $html ); }View on GitHub View on Trac