@rooman
If you want the option for users not to report listings, you can always remove the button in item.php
Just remove this part....
<div class="report-wrap" style="display:none;">
<div id="report">
<img src="<?php echo osc_current_web_theme_url('images/report.png'); ?>" alt="<?php echo osc_esc_html(__('Report', 'epsilon')); ?>" />
<div class="header"><?php _e('Report listing', 'epsilon'); ?></div>
<div class="subheader"><?php _e('If you find this listing as inappropriate, offensive or spammy, please let us know about it. Select one of following reasons:', 'epsilon'); ?></div>
<div class="text">
<a href="<?php echo osc_item_link_spam() ; ?>" rel="nofollow"><?php _e('Spam', 'epsilon') ; ?></a>
<a href="<?php echo osc_item_link_bad_category() ; ?>" rel="nofollow"><?php _e('Misclassified', 'epsilon') ; ?></a>
<a href="<?php echo osc_item_link_repeated() ; ?>" rel="nofollow"><?php _e('Duplicated', 'epsilon') ; ?></a>
<a href="<?php echo osc_item_link_expired() ; ?>" rel="nofollow"><?php _e('Expired', 'epsilon') ; ?></a>
<a href="<?php echo osc_item_link_offensive() ; ?>" rel="nofollow"><?php _e('Offensive', 'epsilon') ; ?></a>
</div>
</div>
</div>