Skip to content

Instantly share code, notes, and snippets.

@harishankerr
Created February 15, 2017 03:01
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 harishankerr/bce6b0dfc0e7157a45b251a479fd52ff to your computer and use it in GitHub Desktop.
Save harishankerr/bce6b0dfc0e7157a45b251a479fd52ff to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_get_availability', 'wcs_custom_get_availability', 1, 2);
function wcs_custom_get_availability( $availability, $_product ) {
// Change Out of Stock Text
if ( ! $_product->is_in_stock() ) {
$availability['availability'] = __('Sold Out', 'woocommerce');
}
return $availability;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment