This topic has 3 replies, 2 voices, and was last updated 3 years, 1 months ago ago by Olga Barlow
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 );
}
Display Stock Quantity/Status @ WooCommerce Shop Page article from https://www.businessbloomer.com/woocommerce-add-stock-quantity-on-shop-page/ does not seem to 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 );
}
Hello,
It looks that wc_get_stock_html dislays nothing.
You can try
add_action( 'woocommerce_after_shop_loop_item_title', 'xstore_stock_catalog', 10 );
function xstore_stock_catalog() {
global $product;
if ( $product->is_in_stock() ) {
echo '<div class="et-stock" >' . $product->get_stock_quantity() . __( ' in stock', 'xstore-child' ) . '</div>';
} else {
echo '<div class="et-out-of-stock" >' . __( 'out of stock', 'xstore-child' ) . '</div>';
}
}
Regards
Tagged: availability, online shopping, quantity, shop page, woocommerce, wordpress
The issue related to '‘Available quantity on shop page’' has been successfully resolved, and the topic is now closed for further responses