Promote your Service and Product online Contact us

+91 87 44 999667; +91 99 11 883996 info@3pixls.com, sales@3pixls.com

Display ‘Add to Cart’ button on product without price


You 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 );