wnw0031

Topic: Post a new Job Button

Is it possible to remove the 'post a job button' from the main page.

I don't want any and everyone to submit jobs--only the admin. Is this possible.

putypuruty

Re: Post a new Job Button

Hi!

Yes, this is easily possible. Just enter the admin panel, Settings -> Main Settings and there you have 'Enable Job Posting'. Set it to 'no' and save. That's all.

wnw0031

Re: Post a new Job Button

Thanks for the info but this is my first time using Jobberbase. So, can you please tell me how to get to the admin panel. Second, if i take that button off the site.. how and where will i go to enter a job posting.

also can jobberbase be integrated into a website?

wnw0031

Re: Post a new Job Button

Ok... got to the admin panel... BUT i typed admin for the user and password and i couldn't get in. Now i'm stuck

wnw0031

Re: Post a new Job Button

Never mind.. i got in.

wnw0031

Re: Post a new Job Button

Hello,

Is it possible to call the jobberbase application using include to my site? If that will not work. do you have a solution to call it to my page. All i did was turn that post job button off in the admin section as well as delete some categories that i will not be using.

also... i'm getting the following error message... not sure how to fix it.
[16-Mar-2010 17:01:14] PHP Notice:  Undefined variable: sql_limit in /home/wnw0031/public_html/f_site10/php/careerApp/_includes/class.Job.php on line 594
[16-Mar-2010 17:05:29] PHP Notice:  Undefined variable: sql_limit in /home/wnw0031/public_html/f_site10/php/careerApp/_includes/class.Job.php on line 594
[16-Mar-2010 17:10:21] PHP Notice:  Undefined variable: sql_limit in /home/wnw0031/public_html/f_site10/php/careerApp/_includes/class.Job.php on line 594

putypuruty

Re: Post a new Job Button

Hi,

What do you mean by including it into your site? You can put a link to it on your front page, for example. Or do you want something more advanced?

About the error: I guess that in admin, you've set the 'Amount of most-applied-to jobs to show on the front page.' to 0. There was a bug in 1.8 regarding this but it's fixed in 1.9

To fix it, open _includes/class.Job.php and find this line

Code:
public function GetMostAppliedToJobs($limit = false)

Replace it with

Code:
public function GetMostAppliedToJobs($limit = 0)

Also, inside the function, replace

Code:

if ($limit > 0)
{
     $sql_limit = 'LIMIT ' . $limit;
}

with

Code:
$sql_limit = 'LIMIT ' . $limit;

This should fix your problem.

wnw0031

Re: Post a new Job Button

i don't want to put link on my page and link to it.. I'm trying to make it be the page but only with my template. I want it to look like it's apart of my site.. seemlessly

evertsemeijn

Re: Post a new Job Button

Try targeting the post page with specif css. You could use something like

Code:
{if $CURRENT_PAGE == 'post'}<link href="post.css" />{/if}
Member of Jobberbase Development Team - Templates/Usability

:: Looking for a jobboard installation and/or custom design? ::

wnw0031

Re: Post a new Job Button

If i target the post page.. will this put the application within my page.

evertsemeijn

Re: Post a new Job Button

No, but if you want the post page to look like your site (and the rest of Jobberbase not I conclude) you can use the above code to use post.css only on the post page.

Member of Jobberbase Development Team - Templates/Usability

:: Looking for a jobboard installation and/or custom design? ::

wnw0031

Re: Post a new Job Button

Not sure if i'm following you.. My files are not currently with me. I will be home at 7pm US--georgia time.

what about the other pages.. will they too look like my site.

I will try your code and see what happens. Can you please check back .. I will email then.

wnw0031

Re: Post a new Job Button

really like this software... and I really want it to work.

evertsemeijn

Re: Post a new Job Button

If you want Jobberbase to look like your site I can build you a Jobberbase template for your site. Integrating the post function into your website takes some work and gets you in trouble when an Jobberbase update is released.

You can contact me via my website's contactform

Member of Jobberbase Development Team - Templates/Usability

:: Looking for a jobboard installation and/or custom design? ::

wnw0031

Re: Post a new Job Button

i was able to try "{if $CURRENT_PAGE == 'post'}<link href="post.css" />{/if}" but that didn't work

how much do you charge to do this.

wnw0031

Re: Post a new Job Button

just checking to see if anyone has any other suggestions that could help me solve my problem