Display sold out on WooCommerce variable product when all variations are out of stock
In WooCommerce I am using the function below where it adds a sold out text on the product thumbnail if the product is out of stock: 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() )…