kongmingmedia

Topic: email verification

so basically i allowed recaptcha but i don't want to do manual verification, basically i want to automatically allow posts to be posted so i don't have to always log into the admin panel and approve posts, how do i do that?

i have found no support for this feature and would like some assistance, thanks!

Kongming Media
www.Twitter.com/kongmingmedia
Marketing and Advertisement Consultation Agency
www.kongmingmedia.com

putypuruty

Re: email verification

Hi,

Funny timing with your post wink As we speak (or rather write) I'm integrating this feature into JB 1.9 - It will be a setting that can be turned on/off by the admin.

For JB 1.8, use this workaround so that your jobs are automatically approved:

- in page_publish.php, replace the following line

Code:
$jobInfo['check_poster_email'] = $job->CheckPosterEmail();

with

Code:
$jobInfo['check_poster_email'] = true;

- in _includes/class.Job.php, find public function Publish() and replace

Code:

if ($this->CheckPosterEmail())
{
    $sql = 'UPDATE '.DB_PREFIX.'jobs SET is_temp = 0, is_active = 1 WHERE id = ' . $this->mId;
}
else
{
    $sql = 'UPDATE '.DB_PREFIX.'jobs SET is_temp = 0, is_active = 0 WHERE id = ' . $this->mId;
}

with

Code:

$sql = 'UPDATE '.DB_PREFIX.'jobs SET is_temp = 0, is_active = 1 WHERE id = ' . $this->mId;

This should do the trick.

kongmingmedia

Re: email verification

Yes, it works. THank you very much.

Kongming Media
www.Twitter.com/kongmingmedia
Marketing and Advertisement Consultation Agency
www.kongmingmedia.com

kamalk

Re: email verification

I also used this mod for automatic posting. It works well. Thank you. However I still get the activation email every time a job is posted. Is there way to stop receiving this mail?

putypuruty

Re: email verification

If you want to get rid of this notification email, just remove the following line from page_publish.php

Code:
$postMan->MailPublishToAdmin($jobInfo);

zoomcreator

Re: email verification

How can you activate job moderation for every posting ? In the current version I only see the following options;

Enable Job Posting:no     yes     By turning this off, the only way to add jobs is through the admin-panel.

Enable Job Moderation:no     yes     If enabled, the administrator must always activate the very first job posted by a hiring person/company. From there on, every job posted with the same email address will be automatically activated.

How does one install a third option ? Which is the administrator must always activate every job posted by a hiring person/company .

Mario

Re: email verification

zoomcreator wrote:

How can you activate job moderation for every posting ? In the current version I only see the following options;

Enable Job Posting:no     yes     By turning this off, the only way to add jobs is through the admin-panel.

Enable Job Moderation:no     yes     If enabled, the administrator must always activate the very first job posted by a hiring person/company. From there on, every job posted with the same email address will be automatically activated.

How does one install a third option ? Which is the administrator must always activate every job posted by a hiring person/company .

I guess this is your answer : http://www.jobberbase.com/forum/topic25 … t-one.html