• I just updated to WooCommerce 3 and everything is working fine for me except for the removal of the Free text for items with a price of zero.

    I was using the following code to change that text and it no longer functions.

    // Change Free text
    add_filter('woocommerce_free_price_html', 'changeFreePriceNotice', 10, 2);
     
    function changeFreePriceNotice($price, $product) {
    	return 'Quoted';
    }

    How can I get items with a price of zero to display my text again?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Free Text Gone?!’ is closed to new replies.