Which wordpress theme is compatible Optima Express theme (real estate inventory) plugin?

From the looks of it, the IDX plugin is coded properly with noconflict, but there is some inline JS in the themes that is not. Wrapping those functions in

(function($) {
   // your functions here
})(jQuery);

will take care of the problem. All JS in WordPress should be run in noconflict mode, so yes you’ll need to go through the theme code and make sure it’s functioning properly.