Hi,
you need to edit the functions.php file in your theme at /wp-content/themes/dante/). Just go in there and add the following line anywhere after the <?php line:
add_filter('woocommerce_get_availability', 'availability_filter_func');
function availability_filter_func($availability) {
$availability['availability'] = str_ireplace('Out of stock', 'Sold Out', $availability['availability']);
return $availability;
}
Please provide specific page url with out of stock so i can give exact solution.
Thanks ๐
With Best Regards
Swift Ideas