Hi, how can i display the available quantity of the product in Product Content Elements in the shop page under each of the products? 4 in stock, 2 in stock etc..
tried the below code and didnt work.
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 );
}