Skip to content

Instantly share code, notes, and snippets.

@aadityajs
Forked from mikejolley/gist:1597957
Last active January 2, 2016 02:18
Show Gist options
  • Save aadityajs/8235694 to your computer and use it in GitHub Desktop.
Save aadityajs/8235694 to your computer and use it in GitHub Desktop.
Woocommerce 'Ask for Quotation'
/**
* This code should be added to functions.php of your theme
**/
add_filter('woocommerce_empty_price_html', 'custom_call_for_price');
function custom_call_for_price() {
return 'Call for price';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment