Display ‘Add to Cart’ button on product without price
Tweet Follow @3pixelssolutionYou can put this in your theme’s functions.php:
function custom_woocommerce_is_purchasable( $purchasable, $product ){
if( $product->get_price() == 0 || $product->get_price() == ”)
$purchasable = true;
return $purchasable;
}
add_filter( ‘woocommerce_is_purchasable’, ‘custom_woocommerce_is_purchasable’, 10, 2 );