Put this code to your child theme functio.php page to view woo-commerce quantity and stock status
add_action( ‘woocommerce_after_shop_loop_item’, ‘bbloomer_show_stock_shop’, 10 );
function bbloomer_show_stock_shop() {
global $product;
echo wc_get_stock_html( $product );
}
-
Previous Post
What is a DNS Zone?