We would need to show the quantity currently available in stock, next to the product pricing on the Shop page. We have tried adding the below hook but this is not working. Please fix the issue.
add_action( ‘after_etheme_product_grid_list_product_element_title’, ‘webarro_show_stock_shop’, 10 );
function webarro_show_stock_shop() {
global $product;
echo wc_get_stock_html( $product );
}