crystalzander

Topic: How to remove applicant counter

Hi Jobberbase peeps.

How can I remove the yellow boxes applicant counter for the jobs?

As the name suggests it shows the number of people who have applied for a particular job when you click on it.

Thanks

Crystal

putypuruty

Re: How to remove applicant counter

Hi!

To achieve what you want, open _templates/default/job-details.tpl and remove the following lines of code:

Code:

{if $CURRENT_PAGE == $URL_JOB}
    <div id="applied-to-job">
        {$job.applied_count}
        {if $job.applied_count != 1}
        <p>{$translations.homepage.applicants}</p>
        {else}
        <p>{$translations.homepage.applicant}</p>
        {/if}
    </div>
{/if}

Hope it helps!

crystalzander

Re: How to remove applicant counter

sure does. Thanks!

James2011

Re: How to remove applicant counter

And related to this - how do you remove the applicant count from the 'most applied to jobs' on the homepage?

thanks

Estate Agent Jobs | UK Property Forum
I'm not a developer but want to contribute to the Jobberbase community - message me if you want advice on SEO, SEM, Commercial models, PR, Social Media, Marketing, Relationship Building, Blogging, Outsourcing

hobo

Re: How to remove applicant counter

To remove the words "1 applicant"...
From the home.tpl in your template remove the line (around line 44):

Code:
<span class="time-posted"><strong>{$job.apps}</strong> {$translations.homepage.applicants}</span>