Add a stock quantity suffix to single products in WooCommerce

Add a stock quantity suffix to single products in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_format_stock_quantity', 'wc_stock_quantity_suffix', 9999, 2 );
 
function wc_stock_quantity_suffix( $stock_quantity, $product ) {
    $stock_quantity .= ' m<sup>2</sup>'; // CONCATENATE " m2"
    return $stock_quantity;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.