By default, WooCommerce displays the amount of remaining stock to customers on the product page.
To remove this stock amount, navigate to:
WooCommerce > Settings > Products > Inventory > Stock display format > Never show quantity remaining in stock
Click Save changes.

Now the stock amount should be hidden from the product page.
Another way, if you want to hide the stock status on the product page, you can use custom css code below. Please copy it into Appearance > Theme Options > Additional Code > Custom CSS
1 2 3 |
.entry-summary p.stock { display: none; } |