Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created January 18, 2017 09:13
Show Gist options
  • Select an option

  • Save ahmedeshaan/41c4dd400aa54ffd8bc76c8b6629c40d to your computer and use it in GitHub Desktop.

Select an option

Save ahmedeshaan/41c4dd400aa54ffd8bc76c8b6629c40d to your computer and use it in GitHub Desktop.
<?php
add_filter('woocommerce_get_availability', 'availability_filter_func');
function availability_filter_func($availability)
{
$availability['availability'] = str_ireplace('Out of stock', 'Available soon', $availability['availability']);
return $availability;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment