Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

terrytsang on "[Plugin: WooCommerce - excelling eCommerce] Changing 'Out of stock' to 'coming soon&"

$
0
0

Hi, just want to share some codes here for the issue above:

//change woocommerce 'out of stock' product status to any text status you want
add_filter('woocommerce_get_availability', 'custom_get_availability');

function custom_get_availability($availability)
{
$availability['availability'] = str_ireplace('Out of stock', 'Coming Soon...', $availability['availability']);
//$availability['availability'] = str_ireplace('Out of stock', 'Sold Out!', $availability['availability']);
//$availability['availability'] = str_ireplace('Out of stock', 'Call for Price', $availability['availability']);

return $availability;
}


Viewing all articles
Browse latest Browse all 104029

Trending Articles