Change the backorder text in the cart in WooCommerce

Change the backorder text in the cart in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_get_availability_text', 'filter_product_availability_text', 10, 2 );
function filter_product_availability_text( $availability_text, $product ) {
    // Check if product status is on backorder
    if ($product->get_stock_status() === 'onbackorder') {
        $availability_text = __( 'Your Custom Text Here', 'your-text-domain' );
    }
    return $availability_text;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.