You appear to be a bot. Output may be restricted
Description
Set the title for this shipping rateNote: This includes the shipping rate for zero weight carts;
Usage
OIK_Weight_Zone_Shipping::set_shippingrate_title( $rate );
Parameters
- $rate
- ( array ) required – the current rate that we're going to use
Returns
voidSource
File name: oik-weight-zone-shipping/class-oik-weight-zone-shipping.phpLines:
1 to 11 of 11
function set_shippingrate_title( $rate ) { //bw_trace2(); if ( isset( $rate[2] ) && $rate[2] != "" ) { $title = $rate[2]; } else { $title = $this->title; } $title = stripslashes( $title ); $this->shippingrate_title = $title; return $title ; }View on GitHub View on Trac