Good idea! Check box for admin in category's setting - enable price? yes/no
Until then, I changed the wording of the 'check with seller'. Then in the item posting file I added the text above price field..."if price is irrelevant, leave this empty".
/oc-includes/osclass/helpers/hItems.php around line 1035
function osc_format_price($price) {
if ($price == null) return osc_apply_filter ('item_price_null', __('check with seller') ) ;
if ($price == 0) return osc_apply_filter ('item_price_zero', __('Free') ) ;
Until I figure out a way to disable price fields in category, this one solution. Not ideal...