Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
claudiosanches / functions.php
Created April 5, 2017 18:30
WooCommerce - Restore "Free!" for free simple products on WooCommerce 3.0.
<?php
/**
* Restore single product "Free!" on WooCommerce 3.0.
*
* @param string $price Price HTML.
* @param WC_Product $product Product instance.
* @return string.
*/
function my_wc_custom_get_price_html( $price, $product ) {
if ( $product->get_price() == 0 ) {