Change Price Type

Add the following code in your theme function.php to change “On Call” to new text

add_filter('rtcl_text_price_type_on_call', function ($text) {
    $text = __('On Call', 'Quote');
    return $text;
});