Skip to content

Instantly share code, notes, and snippets.

@tuanbbhero
Last active January 26, 2019 03:32
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 tuanbbhero/90b29f534d9574fdf31c94a15052c330 to your computer and use it in GitHub Desktop.
Save tuanbbhero/90b29f534d9574fdf31c94a15052c330 to your computer and use it in GitHub Desktop.
Change Out of Stock Text in WooCommerce
add_filter('woocommerce_get_availability', 'availability_filter_func');
function availability_filter_func($availability)
{
$availability['availability'] = str_ireplace('Out of stock', 'Tuan Phan!', $availability['availability']);
return $availability;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment