Hi,
you need to change the file functions.php in theme folder and find (around line 150) the line
<p><?php echo osc_highlight( strip_tags( osc_item_description()) ,250) ; ?></p>
and change for
<p><?php echo osc_highlight( strip_tags( osc_item_description()) ,250) ; ?><?php if( osc_count_item_meta() >= 1 ) { ?>
<?php while ( osc_has_item_meta() ) { ?>
<?php if(osc_item_meta_value()!='') { ?>
<?php echo "<div style='font-size:.8125em'><strong>".osc_item_meta_name(); ?>:</strong> <?php echo osc_item_meta_value(); ?></div>
<?php } ?>
<?php } ?>
<?php } ?></p>
This should add the custom field to main and search pages.
Hope this work