• Your plugin has helped me set up greenhouse job board implementation in few minutes. Thanks for your efforts.

    I need a small help with the Job details :
    Currently, the Job Title is not a link, just the “Apply Now” is linked. I wanted to find out how I can make the title also clickable. (From the inspect element I find that a template is used load the Job details.)

    In short how do I change
    <h3 class="job_title">{{title}}</h3>

    to

    <a href="#" class="job_goto">
        <h3 class="job_title">{{title}}</h3>
    </a>

    The full Job detail template.

    <div class="job job_{{id}} job_{{slug}}" 
      data-id="{{id}}" 
      data-slug="{{slug}}" 
      data-departments="{{departments}}">
      <h3 class="job_title">{{title}}</h3>
      <div class="job_excerpt">{{{excerpt}}}<br />
      <a href="#" class="job_goto">Apply Now</a></div>
    </div>

    Thanks!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Sheeba Abraham

    (@sheebaabraham)

    Could you please advice on the above, or suggest some other workaround on this, please ? Thanks.

    Plugin Author brownbagmarketing

    (@brownbagmarketing)

    If you have access to the actual plugin code you should be able to do exactly what you suggested.
    Around line #225 in app/public/wp-content/plugins/greenhouse-job-board/public/class-greenhouse-job-board-public.php:

    <a href="#" class="job_goto">
        <h3 class="job_title">{{title}}</h3>
    </a>

    or you could do it this way:

    <h3 class="job_title job_goto">{{title}}</h3>

    Either one of these approaches should work.

    Thread Starter Sheeba Abraham

    (@sheebaabraham)

    I did not want to make changes to the plugin code directly.
    Either I will have to forgo future updates or run a risk on my changes getting overwritten on the next update of plugin code.

    Any possibility of including this in the next version?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How Can I add a link to the job title.’ is closed to new replies.