phoenixbrighton

Topic: how do i stop homepage display of the number of submitted applications

I recently stopped the display of the number of submitted applications in every job advert (See http://www.jobberbase.com/forum/topic15 … tions.html ) However on the main page of my site, under 'most popular jobs', next to each job the number of applicants for that job is displayed.

How do I stop the display of the number of applicants (on the main page under most popular jobs next to each advert)?

Many thanks!

links

Re: how do i stop homepage display of the number of submitted applications

Hi,

In _templates/home.tpl search for this code:

Code:

<strong>{$job.apps}</strong> {$translations.homepage.applicants}

and replace it with &nbsp; if you want that column empty or with:

Code:

<img src="{$BASE_URL}img/clock.gif" alt="" /> {$job.created_on}

if you want to show the date the job was posted.

phoenixbrighton

Re: how do i stop homepage display of the number of submitted applications

Great thanks links!!