How Can I add a link to the job title.
-
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)
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.