Osclass forums

Support forums => Plugins => Topic started by: BritWeb on October 20, 2016, 12:07:03 am

Title: Limiting number of postings per user (solved)
Post by: BritWeb on October 20, 2016, 12:07:03 am
Hi

Is there a way to limit number of postings per user? Ideally I do not want an Estate agent to post every one of his property listings.

I would like to limit the number of listings to two for a member.

Thanks
Title: Re: Limiting number of postings per user
Post by: teseo on October 20, 2016, 06:06:27 am
***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):

Code: [Select]
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
Title: Re: Limiting number of postings per user
Post by: BritWeb on October 23, 2016, 12:34:00 pm
Many thanks, teseo

Just to take it a step further, how can we set limit to number of listings separately for companies and individuals.?

Thank you once again.
Title: Re: Limiting number of postings per user
Post by: teseo on October 23, 2016, 01:44:19 pm
***CORRECTED***

Hi,

Code: [Select]
if (osc_is_publish_page()) {
    $limits = array(2, 10); // (Individual, Company)
    $current_limit = $limits[osc_user_field("b_company")];

    if (osc_user_field('i_items') >= $current_limit) {
        osc_add_flash_error_message(sprintf(_m("You can't post more than %d listings"), $current_limit));
        header("Location: " . osc_base_url());
        exit;
    }
}

Regards
Title: Re: Limiting number of postings per user
Post by: BritWeb on October 23, 2016, 02:20:33 pm
Great! Thank you, teseo

Much appreciated! Kind regards
Title: Re: Limiting number of postings per user
Post by: teseo on October 23, 2016, 02:30:03 pm
You're welcome :) Please add [SOLVED] to the title of this thread.

Regards
Title: Re: Limiting number of postings per user (solved)
Post by: MagicM on May 17, 2019, 12:32:08 pm
Instead of Individual/Company is possible to allow different number of ads for normal users and PREMIUM?