Archive for the ‘Smart Job Board Help’ category

Questions and Answers for Debt Collections

July 15th, 2010

Recently we have completed a Questions and Answers Board for the Debt Collections Industry.   The site is actually a sub site of ProCollectionJobs. com.   The new section will provide a way for people in Collections to share information and their expertise in the field. The new addition can be found at http://www. ProCollectionJobs. com/answers.

The new Collections Questions & Answers Board is the first of its kind in the Credit and Collections Industry. ...

(Read full news article)

Job Board SEO – Keeping your expired jobs for content

June 1st, 2010

While doing a little SEO research on one of the job boards managed by DeveloWare LLC, it was noticed that Google had indexed the jobs listed on the site like this: ProCollectionJobs. com. This is great news if you own a job board for the accounts receivable industry. However, it is also an issue. If the job expires and the content goes away what has that done for you next time google crawls the site and reads that page?  To overcome this we have implimented a simple solution:

1) Notify any visitors that the job has been filled or has expired.

2) Let the job description display still for visitors to be able to learn more about that type of work and also for content and SEO reasons.

3) Remove the "Apply Now" button. ...

(Read full news article)

Add smartjobboard admin notifications for applicants

March 9th, 2010

How to add a notification for the system admin to get a notification when an applicant applies for a job using smartjobboard software.

What I wanted was to be able to get a notification when an applicant applies to a job. As an admin you must know what is going on with the site.   Any site for that matter, but especialy with job boards. It is critical so you can know how to modify SEO campaigns and a whole host of other things. Here is the specs I want when the job is done:

1) Email should have the job seekers info on it.
2) Email should have the employer info on it.
3) Email should have the job info on it.

To get started we first need to identify where in the source code we need to add the functionality. The first file we will need is /system/user-scripts/classifieds/apply_now. ...

(Read full news article)

Edit smartjobboard registration email template

February 23rd, 2010

I needed to be able to see a users information when the register for the job board. This goes for Job seekers and employers. The default only give you the user name and email. That wasn't enough because the client needed to know all the registration info without logging into the system to provide better customer service.

So here was my quick fix for it…

First find these three files:

1) /system/lib/miscellaneous/AdminNotifications. php

2) /templates/_system/email_templates/admin_user_registration_email. tpl

3) /system/user-scripts/users/registration. php

 Now open the file you found earlier, /system/lib/miscellaneous/AdminNotifications. php

Look for the function named "sendAdminUserRegistrationLetter" and replace it with the code below:

 function sendAdminUserRegistrationLetter($user_id,$otherInfo="") {

  $admin_email = Settings::getSettingByName('notification_email');
  $system_tpl = System::getSystemSettings('SYSTEM_TEMPLATE_DIR');

  $userInfo = UserManager::getUserInfoBySID($user_id);
  $email = new Email($admin_email, '. . ...

(Read full news article)

How to add a module to your smartjobboard software.

February 23rd, 2010

1. go into the system/modules/whatevercategory and edit the config to add the module into the array
example:
/system/modules/miscellaneous/config. php
add
'contact_form' => array
  (
   'display_name' => 'Contact Form',
   'script'  => 'contact_form. php',
   'type'   => 'user',
   'access_type' => array('user'),
  ),

2. Now in the system/user-scripts directory add the php file to do the work
example:
system/users-cripts
create and add contact_us. php with the code for processing

3. Now in templates add the template: probably best to copy one and modify it.
example:
create and add templates/_system/miscellaneous/contact_form. tpl
email_control. tpl ->copied from contactus
email_control. ...

(Read full news article)
Bookmark & Share