Display in stock for availability text when not managing stock in WooCommerce

Display in stock for availability text when not managing stock in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_get_availability_text', 'wc_display_in_stock', 10 );

function wc_display_in_stock( $availability ) {
    if ( empty( $availability ) ) {
        $availability = esc_html__( 'In Stock' );
    }
    return $availability;
}

Example.

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