mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://www.businessbloomer.com/woocommerce-stock-quantity-suffix-e-g-sq-in-kg-boxes-etc/
6 lines
247 B
Text
6 lines
247 B
Text
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;
|
|
}
|