Hello
There is a problem. The product category page has a stock status, but the product page does not.
Stock status is custom. Manage stock plugin – Custom Stock Status
The functionality of the plugin provides for displaying the stock status on the product page.
I thought I needed to put in a code. Because without this plugin your theme doesn’t display stock anywhere.
// Show stock status on single product
add_action( 'woocommerce_single_product_summary', function(){
global $product;
echo wc_get_stock_html( $product );
}, 10 );
It will display the stock status on the single product.
Then i can only assume that some other plugin is affecting that code.
That code is 100% woocommerce, its not theme specific, and it works on my woo dev site.