Hi,
can i change the In Stock / Out of Stock text?
I have tried this but it breaks the styling and only changes it on single product page
——————————————
add_filter( ‘woocommerce_get_availability’, ‘custom_get_availability’, 1, 2);
function custom_get_availability( $availability, $_product ) {
//change text “In Stock’ to ‘custom’
if ( $_product->is_in_stock() ) $availability[‘availability’] = __(‘<p style=”color:green”>IN STOCK ONLINE</p>’, ‘woocommerce’);
//change text “Out of Stock’ to ‘custom’
if ( !$_product->is_in_stock() ) $availability[‘availability’] = __(‘SOLD OUT – contact to check showroom stock’, ‘woocommerce’);
return $availability;
}
—————————————-