Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Woo : Change “Out of Stock” to SOLD OUT – Code DPlugins

Woo : Change “Out of Stock” to SOLD OUT

This is a quality of life improvement for an ecommerce store.

<?php

add_filter( 'woocommerce_product_single_add_to_cart_text', 'dd_custom_single_add_to_cart_text' ); 
function dd_custom_single_add_to_cart_text(){
    global $product;
    if ($product->get_stock_status() !== 'instock'){
        return __( 'SOLD OUT', 'woocommerce' );
    } else {
        return __( 'Add to cart', 'woocommerce' );
    }
}
Click to Copy