No problems @andygroove take it from there
https://gist.github.com/wpserve/6f9c9ce6e0c4cfd22ebace936537c8d5 or here
<?php
add_filter( 'wpc_filter_post_meta_num_term_name', 'wpc_custom_post_meta_num_term_name', 10, 2 );
function wpc_custom_post_meta_num_term_name( $term_name, $e_name ){
if( $e_name === '_price' ){
if( strpos( $term_name, 'Min price' ) !== false ){
$term_name = str_replace( 'Min price', 'Цена от', $term_name );
$term_name .= ' руб.';
}
if( strpos( $term_name, 'Max price' ) !== false ){
$term_name = str_replace( 'Max price', 'Цена до', $term_name );
$term_name .= ' руб.';
}
}
return $term_name;
}
?>
And replace with your values if you need.
P.S. Best thanks for a plugin developer is review about his plugin ??