wpCasa: Custom Price Labels
<?php
/**
* Custom Price Labels
*/
add_filter('wpsight_get_price_labels', 'wpsc0053_get_price_labels');
function wpsc0053_get_price_labels() {
$listing_price_labels = array(
'sold' => __( 'Sold', 'wpsight' ),
'rented' => __( 'Rented', 'wpsight' ),
'request' => __( 'Price on request', 'wpsight' )
);
return $listing_price_labels;
}