Add to functions.php file:
function themeprefix_change_soldout ( $text, $product) {
if ( !$product->is_in_stock() ) {
$text = ‘<div class=””>Sold out</div>’;
}
return $text;
}
Veteran owned and
operated since 1998
by Robin Snow | Oct 22, 2021 | Technical Help, WordPress
Add to functions.php file:
function themeprefix_change_soldout ( $text, $product) {
if ( !$product->is_in_stock() ) {
$text = ‘<div class=””>Sold out</div>’;
}
return $text;
}