Hi guit4eva,
Yes there is a way of course, put the below code to your theme “functions.php”
file:
add_filter(‘jigoshop_product_availability’, ‘changeCustomAvailability’);
function changeCustomAvailability($notice = array(), $_product = 0){
;
$product = new jigoshop_product($_product);
if($product->is_in_stock()){
$notice = array(
‘availability’ => __(‘In Stock’, ‘jigoshop’),
‘class’ => null
);
$notice[‘availability’] .= ‘: ‘. $product->stock.’ ‘.__(‘ Left’, ‘jigoshop’);
}if(!$product->is_in_stock()){
$notice[‘availability’] = __(‘Out of Stock’, ‘jigoshop’);
}
return $notice;
}