You appear to be a bot. Output may be restricted
Description
Set the title for this country group rateNote: This includes countrygroup 0 – any country not listed and shipping rate for zero weight carts;
Usage
OIK_Shipping_Pro::set_countrygroup_title( $rate );
Parameters
- $rate
- ( array ) required – the current rate that we're going to use
Returns
voidSource
File name: oik-weightcountry-shipping-pro/class-oik-shipping-pro.phpLines:
1 to 11 of 11
function set_countrygroup_title( $rate ) { //bw_trace2(); if ( isset( $rate[3] ) ) { $title = $rate[3]; } else { $title = $this->title; } $this->countrygroup_title = $title; return( $title ); }View on GitHub