Skip to content

Instantly share code, notes, and snippets.

@curtismchale
Created July 18, 2014 04:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curtismchale/bfdbb96ee5bc979c1390 to your computer and use it in GitHub Desktop.
Save curtismchale/bfdbb96ee5bc979c1390 to your computer and use it in GitHub Desktop.
<?php
/**
* Allows you to change the default message for simple products.
*
* @param string $message stock Easy Content Restriction message
* @param int $product_id The post_id for the product the message would be tied to, may be a product variation id
* @return string Your custom message
*/
function change_simple_product_message( $message, $product_id ) {
return 'Our custom message';
}
add_filter( 'wecr_simple_product_message', 'change_simple_product_message' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment