Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Last active July 6, 2018 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save barbwiredmedia/3f67c7d5f943f7b325ef to your computer and use it in GitHub Desktop.
Save barbwiredmedia/3f67c7d5f943f7b325ef to your computer and use it in GitHub Desktop.
wordpress woocommerce out of stock
// Woo commerce change out of stock text
add_filter('woocommerce_get_availability', 'availability_filter_func');
function availability_filter_func($availability)
{
$availability['availability'] = str_ireplace('Out of stock', 'This item is currently out of stock. Please check back again at a later date.', $availability['availability']);
return $availability;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment