wpdwc_weight_ounce

/** Filter to change the ounce weight name in WooConnect */
function acme_weight_ounce( $weightounce ) {
    $weightounce = '28g';
    return $weightounce;
}
add_filter( 'wpdwc_weight_ounce', 'acme_weight_ounce' );