//Echo something if product is out of stock
add_action( 'woocommerce_share', 'add_out_of_stock_custom_message', 5 );
function add_out_of_stock_custom_message() {
global $product;
if ( ! $product->is_in_stock() ) {
echo '';
}
}
Thanks !!!!