wpdwc_weight_half

/** Filter to change the half ounce weight name in WooConnect */
function acme_weight_half( $weighthalf ) {
    $weighthalf = '14g';
    return $weighthalf;
}
add_filter( 'wpdwc_weight_half', 'acme_weight_half' );