***CORRECTED***
Hi,
Well, first you need to tick "Only logged in users can post listings" on Admin Dashboard / Listings / Settings.
Then insert this almost at the top of your theme item-post.php (after the initial comments and before // meta tag robots):
if (osc_is_publish_page()) {
$limit = 2;
if (osc_user_field('i_items') >= $limit) {
osc_add_flash_error_message(sprintf(_m("You can't post more than %d listings"), $limit));
header("Location: " . osc_base_url());
exit;
}
}
Change the value of $limit variable if you want to allow more (or less, only one ad per user).
Regards