Home › Forums › WoodMart support forum › Sold Out Label › Reply To: Sold Out Label
shweta
Hi,
I have installed a storefront theme and used it on a test domain and also used PHP code for out of stock labels on a single product page and shop page but when I use it on my main domain I can only the out of stock label on a single product page and not on the shop page.
Test domain Shop page URL: http://revoulation.berylindia.xyz/shop/
Single page URL: http://revoulation.berylindia.xyz/product/necklace/
PHP Code
/**
* @snippet Display “Sold Out” on Loop Pages – WooCommerce
*/
add_action( ‘woocommerce_before_shop_loop_item_title’, ‘bbloomer_display_sold_out_loop_woocommerce’ );
function bbloomer_display_sold_out_loop_woocommerce() {
global $product;
if ( ! $product->is_in_stock() ) {
echo ‘<span class=”soldout”>Sold Out</span>’;
}
}
Best