Product Page

WooCommerce Change Out Of Stock Text

WooCommerce customised out of stock text

Pre-Requisites

There are no pre-requisites in order for you to be able to implement this solution.

How To Implement This Solution?

Simply copy the pre-coded solution to your active theme’s functions.php or preferably the Code Snippets Plugin.

About This Solution

If you’ve enabled stock management on our store, customers will see the stock status on the single product page. If a product does not have availability, they’ll see a red sad face and the text “Out of stock”. This quick guide shows you how you can customise this text to show something perhaps a little more fun or tailored towards your business language. Simply edit the text as necessary from the code to transform the in stock text.

/**
 * Snippet Name:	WooCommerce Change Out Of Stock Text
 * Snippet Author:	ecommercehints.com
 */

add_filter( 'woocommerce_get_availability', 'ecommercehints_change_out_of_stock_text', 10, 2);
function ecommercehints_change_out_of_stock_text( $availability, $product ) {

    if (!$product->is_in_stock() ) {
        $availability['availability'] = __('Uh On...none left!', 'woocommerce'); // Customised text
    }
    return $availability;
}

Snippet Benefits

  • Customise the “Out of stock” stock status text to be in-line with your business’ language.

100 WooCommerce Conversion Rate Optimisation Tips

This field is for validation purposes and should be left unchanged.

Let’s collaborate!

Need to outsource WordPress development?

Join forces with UnlimitedWP for an outsourced white label web development service you can truly rely on.

First Timer Here?

Sign up to receive 20% off on your first month with us.

26027
WELCOME OFFER