25% off ProSNIPC25OFF

Custom WooCommerce Out-of-Stock Text

Replaces the default "Out of stock" availability text with a custom message on product pages.

PHPby SnipCraft
php
<?php
if ( ! class_exists( 'WooCommerce' ) ) {
    return;
}
add_filter( 'woocommerce_get_availability_text', 'scseed_wc_out_of_stock_text', 10, 2 );
function scseed_wc_out_of_stock_text( $availability, $product ) {
    if ( ! $product->is_in_stock() ) {
        $availability = __( 'Sorry, this item is currently unavailable. Check back soon!', 'textdomain' );
    }
    return $availability;
}
#frontend#product#shop#stock#woocommerce