Hi,
Currently, our plugin hasn’t this feature.
Please update our plugin to the latest version 1.0.3 then you can exclude unpurchasable products from the search result by using this option https://www.dropbox.com/s/yp7i7yxt626if1g/2021-06-28_15-47-27.png?dl=0
You also can add below snippet to show the stock status (How to add custom code?):
add_action( 'wpcas_after_item_info', 'wpcas_show_product_stock', 99 );
function wpcas_show_product_stock( $_product ) {
echo '<div class="wpcas-availability">' . wc_get_stock_html( $_product ) . '</div>';
}
And the result https://www.dropbox.com/s/cvt2fgrkqdmtq1p/2021-06-28_15-52-43.png?dl=0