Remove Price Type

Add the following code in your Child Theme function.php

add_filter( 'rtcl_price_types', function($price_types){
unset($price_types['on_call']);
return $price_types;
} );