Do you ever need to replace the default WooCommerce pricing label for a free product? If we ask any user what will he/she like the text “FREE” or a price tag of “0.00”. Majority will say “Free” Attracts More. Now Let’s talk about WooCommerce ,In WooCommerce when product price is zero or empty then on cart page or checkout page and product page will show zero price ($0.00). Instead of showing the default WooCommerce pricing label of $0.00, you want to show custom text,like “FREE” or “Download Now”. In Previous Image we so price tag , But I still believe “FREE” looks much better than “$0.00”. It’s much more enticing, isn’t it? For Cart and Checkout Page: function FreeCartItemPriceCustomLabel( $price, $cart_item, $cart_item_key ) { $FreeLabel = ‘<span class=”amount” style=” color: #f7ad06 !important; “>’ . __(‘Free’) . ‘</span>’; if( $cart_item[‘data’]->get_price() > 0 ){ return $price; }else{ return