phoenixbrighton

Topic: how do i stop the site displaying the number of submitted applications

hi everyone

does anyone know how i may stop the site displaying the number of submitted applications in every job advert? (appears top right in a yellow box e.g. "2 applicants")

thank you!

evertsemeijn

Re: how do i stop the site displaying the number of submitted applications

Look for something like this and remove it:

Code:
{if $CURRENT_PAGE == 'job'}
    <!-- Number of applications sent -->
        <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}
Member of Jobberbase Development Team - Templates/Usability :: Looking for installation and/or custom design? :: Beautiful Wordpress themes

phoenixbrighton

Re: how do i stop the site displaying the number of submitted applications

anyone know the file this code is in? thx

evertsemeijn

Re: how do i stop the site displaying the number of submitted applications

Oops sorry. It's in _templates/job-details.tpl big_smile

Member of Jobberbase Development Team - Templates/Usability :: Looking for installation and/or custom design? :: Beautiful Wordpress themes

phoenixbrighton

Re: how do i stop the site displaying the number of submitted applications

evertsemeijn wrote:

Oops sorry. It's in _templates/job-details.tpl big_smile

brilliant - thank you!